-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.08 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
[build-system]
requires = ["intreehooks", "requests", "docutils", "pytoml",
"zipfile36; python_version in '3.3 3.4 3.5'",]
build-backend = "intreehooks:loader"
[tool.intreehooks]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module="flit"
author="Thomas Kluyver"
author-email="[email protected]"
home-page="https://github.com/takluyver/flit"
requires=["requests",
"docutils",
"pytoml",
"zipfile36; python_version in '3.3 3.4 3.5'",
]
requires-python=">=3"
description-file="README.rst"
classifiers=["Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.flit.metadata.requires-extra]
test = [
"testpath",
"responses",
"pytest>=2.7.3",
"pytest-cov",
]
doc = [
"sphinx",
"sphinxcontrib_github_alt",
"pygments-github-lexers", # TOML highlighting
]
installfrom = [
"requests_download",
]
[tool.flit.metadata.urls]
Documentation = "https://flit.readthedocs.io/en/latest/"
[tool.flit.scripts]
flit = "flit:main"