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
|
[build-system]
requires = []
build-backend = "flit_core.buildapi"
backend-path = ["."]
[project]
name="flit_core"
authors=[
{name = "Thomas Kluyver & contributors", email = "thomas@kluyver.me.uk"},
]
description = "Distribution-building parts of Flit. See flit package for more information"
dependencies = []
requires-python = '>=3.6'
readme = "README.rst"
license = "BSD-3-Clause"
license-files = ["LICENSE*"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://flit.pypa.io"
Source = "https://github.com/pypa/flit"
[tool.flit.sdist]
include = [
"bootstrap_install.py",
"build_dists.py",
"tests_core/",
]
|