File: pyproject.toml

package info (click to toggle)
pyx3 0.17-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,328 kB
  • sloc: python: 27,656; makefile: 225; ansic: 130; sh: 17
file content (57 lines) | stat: -rwxr-xr-x 1,813 bytes parent folder | download
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" }