forked from pypa/flit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (28 loc) · 878 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
[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="thomas@kluyver.me.uk"
home-page="https://github.com/takluyver/flit"
requires=["requests",
"docutils",
"requests_download",
"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.urls]
Documentation = "https://flit.readthedocs.io/en/latest/"
[tool.flit.scripts]
flit = "flit:main"