-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
executable file
·57 lines (43 loc) · 1.77 KB
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PyX"
description = "Python package for the generation of PostScript, PDF, and SVG files"
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
authors = [
{name="Jörg Lehmann", email="joerg@pyx-project.org"},
{name="André Wobst", email="wobsta@pyx-project.org"}
]
maintainers = [
{name="Jörg Lehmann", email="joerg@pyx-project.org"},
{name="André Wobst", email="wobsta@pyx-project.org"}
]
keywords = ["python", "data-science", "graphics", "data-visualization", "plotting", "postscript", "pdf"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules"
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = [ "zope.pagetemplate", "sphinx", "sphinx_selective_exclude", "pillow", "IPython", "nbformat", "testfixtures", "numpy", "scikit-image" ]
[project.urls]
homepage = "https://pyx-project.org/"
documentation = "https://pyx-project.org/documentation.html"
repository = "https://github.com/pyx-project/pyx"
changelog = "https://github.com/pyx-project/pyx/blob/master/CHANGES"
[tool.setuptools]
packages = ["pyx", "pyx.graph", "pyx.graph.axis", "pyx.font", "pyx.dvi", "pyx.metapost"]
[tool.setuptools.package-data]
pyx = ["data/afm/*", "data/lfs/*", "data/def/*", "data/pyxrc"]
[tool.setuptools.dynamic]
version = { attr = "pyx.version.version" }