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
|