File: pyproject.toml

package info (click to toggle)
flit 3.12.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,504 kB
  • sloc: python: 6,691; makefile: 175; sh: 27
file content (31 lines) | stat: -rw-r--r-- 721 bytes parent folder | download | duplicates (2)
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/",
]