-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 954 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
[build-system]
requires = ["flit_core >=2.3.0,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module="flit"
author="Thomas Kluyver"
author-email="[email protected]"
home-page="https://github.com/takluyver/flit"
requires=[
"flit_core>=2.3.0",
"requests",
"docutils",
"pytoml",
"zipfile36; python_version in '3.3 3.4 3.5'",
]
requires-python=">=3.5"
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
]
[tool.flit.metadata.urls]
Documentation = "https://flit.readthedocs.io/en/latest/"
[tool.flit.scripts]
flit = "flit:main"