rearranged Python part

This commit is contained in:
Luxferre
2026-07-03 10:02:18 +03:00
parent 63a541953f
commit 1bc0384811
6 changed files with 66 additions and 4 deletions
+25
View File
@@ -0,0 +1,25 @@
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "clyx"
version = "0.1.0"
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"]