blob: e11bf62bb729014661f68defc935d062815ea36d (
plain)
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
|
[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'
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[project.urls]
Source = "https://github.com/pypa/flit"
[tool.flit.sdist]
include = ["bootstrap_install.py", "build_dists.py"]
|