Updated pyproject.toml
This commit is contained in:
parent
81f10de24e
commit
d0ad38b714
0
cutekit/py.typed
Normal file
0
cutekit/py.typed
Normal 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"]
|
||||||
|
|
Loading…
Reference in a new issue