Updated pyproject.toml

This commit is contained in:
Sleepy Monax 2023-10-22 14:55:57 +02:00
parent 81f10de24e
commit d0ad38b714
2 changed files with 10 additions and 3 deletions

0
cutekit/py.typed Normal file
View file

View file

@ -1,5 +1,6 @@
[build-system] [build-system]
requires = ["setuptools ~= 68.0"] requires = ["setuptools ~= 68.0"]
build-backend = "setuptools.build_meta"
[project] [project]
name = "cutekit" name = "cutekit"
@ -16,10 +17,16 @@ license = { text = "MIT" }
dependencies = ["requests ~= 2.28.0", "graphviz ~= 0.20.1"] dependencies = ["requests ~= 2.28.0", "graphviz ~= 0.20.1"]
dynamic = ["version"] dynamic = ["version"]
[tool.setuptools.dynamic]
version = { attr = "cutekit.const.VERSION" }
[project.scripts] [project.scripts]
ck = "cutekit:main" ck = "cutekit:main"
cutekit = "cutekit:main" cutekit = "cutekit:main"
cute-engineering-cutekit = "cutekit:main" cute-engineering-cutekit = "cutekit:main"
[tool.setuptools]
packages = ["cutekit"]
[tool.setuptools.dynamic]
version = { attr = "cutekit.const.VERSION" }
[tool.setuptools.package-data]
"cutekit" = ["py.typed"]