-
Notifications
You must be signed in to change notification settings - Fork 123
/
pyproject.toml
44 lines (39 loc) · 979 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
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["flit_core >=3.2.0,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pynsist"
authors = [
{name = "Thomas Kluyver", email = "[email protected]"},
]
readme = "README.rst"
requires-python = ">=3.6"
dependencies = [
"requests",
"requests_download",
"jinja2",
"yarg",
"distlib >=0.3"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Environment :: Win32 (MS Windows)",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Software Distribution",
]
dynamic = ['version', 'description']
[tool.flit.module]
name = "nsist"
[project.optional-dependencies]
test = [
"testpath",
"responses",
]
[project.scripts]
pynsist = "nsist:main"
[project.urls]
Documentation = "https://pynsist.readthedocs.io/en/latest/"
Source = "https://github.com/takluyver/pynsist"