-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
31 lines (26 loc) · 965 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "gnumake_tokenpool"
authors = [{name = "Milan Hauth", email = "[email protected]"}]
description = "jobclient and jobserver for the GNU make tokenpool protocol"
keywords = ["jobclient", "jobserver", "gnumake", "tokenpool", "jobqueue", "job", "queue", "gnu", "make"]
readme = {file = 'readme.md', content-type='text/markdown'}
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/milahu/gnumake-tokenpool"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["py/src"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "gnumake_tokenpool.tokenpool.__version__"}