-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
32 lines (27 loc) · 972 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ["setuptools ~= 68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cutekit"
description = "A build system and package manager for low-level software development"
authors = [
{ name = "Keyboard Slayer", email = "[email protected]" },
{ name = "Sleepy Monax", email = "[email protected]" },
{ name = "Cyp", email = "[email protected]" },
{ name = "Cute Engineering", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dynamic = ["version", "dependencies"]
[project.scripts]
ck = "cutekit:main"
cutekit = "cutekit:main"
cute-engineering-cutekit = "cutekit:main"
[tool.setuptools]
packages = ["cutekit"]
[tool.setuptools.dynamic]
version = { attr = "cutekit.const.VERSION" }
dependencies = { file = ["cutekit/requirements.txt"] }
[tool.setuptools.package-data]
"cutekit" = ["py.typed", "requirements.txt", "entrypoint.sh", "bootstrap.sh"]