forked from openkylin/flit
47 lines
1013 B
TOML
47 lines
1013 B
TOML
[build-system]
|
|
requires = []
|
|
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.7.1",
|
|
"requests",
|
|
"docutils",
|
|
"tomli",
|
|
"tomli-w",
|
|
]
|
|
requires-python = ">=3.6"
|
|
readme = "README.rst"
|
|
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",
|
|
]
|
|
doc = [
|
|
"sphinx",
|
|
"sphinxcontrib_github_alt",
|
|
"pygments-github-lexers", # TOML highlighting
|
|
]
|
|
|
|
[project.urls]
|
|
Documentation = "https://flit.readthedocs.io/en/latest/"
|
|
Source = "https://github.com/pypa/flit"
|
|
Changelog = "https://flit.readthedocs.io/en/latest/history.html"
|
|
|
|
[project.scripts]
|
|
flit = "flit:main"
|