This repository has been archived on 2026-05-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
foreign-thon-old/packages/foreignthon/pyproject.toml
2026-05-15 18:53:00 -05:00

55 lines
1.3 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "foreignthon"
version = "0.1.0"
description = "Write Python in any language. Transpiles foreign-language .xx.py files to standard Python."
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [
{ name = "Your Name", email = "you@example.com" }
]
keywords = ["python", "transpiler", "i18n", "localization", "language"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Pre-processors",
]
dependencies = [
"click>=8.0",
]
[project.scripts]
fpy = "foreignthon.cli:main"
[project.entry-points."foreignthon.langs"]
# Language packs register themselves here.
# e.g. foreignthon-es adds: es = "foreignthon_es"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"ruff>=0.4",
]
[tool.hatch.build.targets.wheel]
packages = ["src/foreignthon"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 88
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I"]