Files
clyx/clyx-python/pyproject.toml
T

26 lines
531 B
TOML
Raw Normal View History

2026-07-03 10:02:18 +03:00
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "clyx"
2026-07-06 12:52:01 +03:00
version = "0.3.2"
2026-07-03 10:02:18 +03:00
description = "Clyx programming language interpreter"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "Public Domain" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: Public Domain",
"Operating System :: OS Independent",
]
[project.scripts]
clyx = "clyx:main"
[tool.setuptools]
packages = ["clyx"]
[tool.setuptools.package-data]
clyx = ["*.clx"]