rearranged Python part
This commit is contained in:
@@ -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"]
|
||||
Reference in New Issue
Block a user