-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
65 lines (59 loc) · 1.53 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
58
59
60
61
62
63
64
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "toyplot"
[project]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Other Environment",
"Environment :: Web Environment",
"Framework :: IPython",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"arrow>=1.0",
"custom_inherit",
"multipledispatch",
"numpy>=1.8.0",
"packaging",
"pypng",
"reportlab",
]
description = "A modern plotting toolkit supporting electronic publishing and reproducibility."
dynamic = ["version"]
maintainers = [{name="Timothy M. Shead", email="[email protected]"}]
name = "toyplot"
requires-python = ">=3.8"
[project.optional-dependencies]
all = [
"behave",
"coverage",
"ipykernel",
"nbsphinx",
"pandas",
"scikit-image",
"sphinx >= 3.5",
"sphinx_rtd_theme",
]
doc = [
"ipykernel",
"nbsphinx",
"pandas",
"scikit-image",
"sphinx >= 3.5",
"sphinx_rtd_theme",
]
[project.scripts]
[project.urls]
"Chat" = "https://github.com/sandialabs/toyplot/discussions"
"Coverage" = "https://coveralls.io/r/sandialabs/toyplot"
"Documentation" = "https://toyplot.readthedocs.io"
"Issue Tracker" = "https://github.com/sandialabs/toyplot/issues"
"Regression Tests" = "https://github.com/sandialabs/toyplot/actions"
"Source" = "https://github.com/sandialabs/toyplot"