File: pyproject.toml

package info (click to toggle)
dh-python 6.20250414
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,560 kB
  • sloc: python: 5,209; makefile: 575; perl: 249; sh: 35
file content (22 lines) | stat: -rw-r--r-- 368 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"

[tool.flit.metadata]
module = "foo"
author = "Stefano Rivera"
requires = [
    "cachy",
    "importlib-metadata ; python_version < '3.5'"
]

[tool.flit.metadata.requires-extra]
test = [
    "tox",
]

[tool.flit.scripts]
foo = "foo:main"

[tool.flit.external-data]
directory = "data"