-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.44 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "toltecmk"
version = "0.3.4"
authors = [
{ name="Mattéo Delabre", email="[email protected]" },
{ name="Eeems", email="[email protected]" },
]
description = "Build system used for the Toltec community repository"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Archiving :: Packaging",
]
keywords = [
"build-tooling",
"packaging",
"distribution",
]
dynamic = ["dependencies", "readme"]
[project.urls]
"Homepage" = "https://github.com/toltec-dev/build"
"Bug Tracker" = "https://github.com/toltec-dev/build/issues"
[project.scripts]
toltecmk = "toltec.__main__:main"
[tool.setuptools]
packages = [
"toltec",
"toltec.recipe_parsers",
"toltec.hooks",
]
[tool.setuptools.package-data]
toltec = ["py.typed", "*.py.typed"]
"toltec.recipe_parsers" = ["py.typed", "*.py.typed"]
"toltec.hooks" = ["py.typed", "*.py.typed"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
readme = {file= ["README.md"], content-type = "text/markdown"}
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"