forked from dholth/enscons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.03 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
[project]
name = "enscons-forked"
description = "Tools for building Python packages with SCons (forked for providing some useful features)"
version = "0.28.0"
authors = [{ name = "Christoph Wiedemann", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
]
dependencies = [
"scons>=3.0.5",
"pytoml>=0.1",
"setuptools",
"wheel",
"attrs",
"packaging>=20.9",
"editables==0.2;python_version>'3.0'",
]
keywords = ["packaging", "wheel"]
license = "MIT"
packages = ["enscons"]
readme = "README.rst"
src_root = "."
url = "https://github.com/cwiede/enscons-forked"
[project.optional-dependencies]
cli = ["click"]
docs = ["furo", "sphinx", "myst-parser", "mdit-py-plugins>=0.3.0"]
[project.scripts]
setup2toml = "enscons.setup2toml:main"
[build-system]
build-backend = "enscons.api"
backend-path = ["."] # only for bootstrapped enscons
requires = [
"scons",
"packaging",
"pytoml>=0.1",
] # enscons users add "enscons>=0.28" to this list