26 lines
531 B
TOML
26 lines
531 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "clyx"
|
|
version = "0.3.7"
|
|
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"]
|