-
Notifications
You must be signed in to change notification settings - Fork 137
/
pyproject.toml
47 lines (43 loc) · 1020 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
45
46
47
[build-system]
requires = ["flit_core >=3.10.1,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "flit"
authors = [
{name = "Thomas Kluyver", email = "[email protected]"},
]
dependencies = [
"flit_core >=3.10.1",
"requests",
"docutils",
"tomli-w",
"pip",
]
requires-python = ">=3.8"
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = ["Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ['version', 'description']
[project.optional-dependencies]
test = [
"testpath",
"responses",
"pytest>=2.7.3",
"pytest-cov",
"tomli",
]
doc = [
"sphinx",
"sphinxcontrib_github_alt",
"pygments-github-lexers", # TOML highlighting
]
[project.urls]
Documentation = "https://flit.pypa.io"
Source = "https://github.com/pypa/flit"
Changelog = "https://flit.pypa.io/en/stable/history.html"
[project.scripts]
flit = "flit:main"