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 48
|
[build-system]
requires = ["flit_core >=3.11,<4"]
build-backend = "flit_core.buildapi"
backend-path = ["flit_core"]
[project]
name = "flit"
authors = [
{name = "Thomas Kluyver", email = "thomas@kluyver.me.uk"},
]
dependencies = [
"flit_core >=3.12.0",
"requests",
"docutils",
"tomli-w",
"pip",
]
requires-python = ">=3.8"
readme = "README.rst"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
classifiers = ["Intended Audience :: Developers",
"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"
|