File: 04-pyproject.toml

package info (click to toggle)
python-validate-pyproject 0.24.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,340 kB
  • sloc: python: 3,053; makefile: 46; sh: 25
file content (34 lines) | stat: -rw-r--r-- 683 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
32
33
34
[project]
name = "project"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = ["numpy>=1.18.5"]
license.file = "LICENSE.txt"

[project.entry-points]
pandas_plotting_backends = {matplotlib = "project.plotting:matplotlib_plot"}

[project.optional-dependencies]
test = [
    "pytest",
    "pytest-xdist",
]

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
include-package-data = true
zip-safe = false
platforms = ["any"]

[tool.setuptools.package-data]
"*" = ["data/*", "files/**/*.json"]

[tool.setuptools.packages.find]
include = ["pkg", "pkg.*"]

[tool.distutils.build_ext]
inplace = true