2023-08-18 20:27:12 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools ~= 68.0"]
|
2023-10-22 12:55:57 +00:00
|
|
|
build-backend = "setuptools.build_meta"
|
2023-08-18 20:27:12 +00:00
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "cutekit"
|
|
|
|
description = "A build system and package manager for low-level software development"
|
|
|
|
authors = [
|
|
|
|
{ name = "Keyboard Slayer", email = "joda@cute.engineering" },
|
|
|
|
{ name = "Sleepy Monax", email = "nivb@cute.engineering" },
|
|
|
|
{ name = "Cyp", email = "cypb@cute.engineering" },
|
|
|
|
{ name = "Cute Engineering", email = "contact@cute.engineering" },
|
|
|
|
]
|
|
|
|
readme = "README.md"
|
2023-11-21 13:49:25 +00:00
|
|
|
requires-python = ">=3.11"
|
2023-08-18 20:27:12 +00:00
|
|
|
license = { text = "MIT" }
|
2023-11-15 09:57:51 +00:00
|
|
|
dynamic = ["version", "dependencies"]
|
2023-08-18 20:27:12 +00:00
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
ck = "cutekit:main"
|
|
|
|
cutekit = "cutekit:main"
|
|
|
|
cute-engineering-cutekit = "cutekit:main"
|
2023-10-22 12:55:57 +00:00
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
packages = ["cutekit"]
|
|
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
version = { attr = "cutekit.const.VERSION" }
|
2023-11-30 15:40:59 +00:00
|
|
|
dependencies = { file = ["cutekit/requirements.txt"] }
|
2023-10-22 12:55:57 +00:00
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
2023-12-16 19:57:54 +00:00
|
|
|
"cutekit" = ["py.typed", "requirements.txt", "entrypoint.sh", "bootstrap.sh"]
|