forked from takluyver/pynsist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 850 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (34 loc) · 850 Bytes
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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "nsist"
author = "Thomas Kluyver"
author-email = "thomas@kluyver.me.uk"
dist-name = "pynsist"
home-page = "https://pynsist.readthedocs.io/en/latest/"
description-file = "README.rst"
requires-python = ">=3.5"
requires = [
"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",
]
[tool.flit.metadata.requires-extra]
test = [
"testpath",
"responses",
]
[tool.flit.scripts]
pynsist = "nsist:main"