-
Notifications
You must be signed in to change notification settings - Fork 54
/
pyproject.toml
86 lines (79 loc) · 1.97 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = [
"setuptools >=30.3.0",
"setuptools_scm >=6",
]
build-backend = "setuptools.build_meta"
[project]
name = "colorcet"
dynamic = ["version"]
description = "Collection of perceptually uniform colormaps"
readme = "README.md"
license = { text = "CC-BY License" }
requires-python = ">=3.7"
authors = [
{ name = "James A. Bednar", email = "[email protected]" },
]
maintainers = [
{ name = "James A. Bednar", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable",
]
dependencies = []
[project.urls]
Homepage = "https://colorcet.holoviz.org"
Source = "http://github.com/holoviz/colorcet"
HoloViz = "https://holoviz.org/"
[project.optional-dependencies]
tests = [
"pre-commit",
"pytest >=2.8.5",
"pytest-cov",
"packaging",
]
tests_extra = [
"colorcet[tests]",
"pytest-mpl", # only available on pip and conda-forge
]
examples = [
"numpy",
"holoviews",
"matplotlib",
"bokeh",
]
tests_examples = [
"colorcet[examples]",
"nbval",
]
doc = [
"colorcet[examples]",
"nbsite >=0.8.4",
"sphinx-copybutton",
]
all = [
"colorcet[tests]",
"colorcet[tests_extra]",
"colorcet[examples]",
"colorcet[doc]",
]
[tool.setuptools]
# To exclude PNG files in colorcet/tests/baseline
include-package-data = false
[tool.setuptools.packages.find]
include = ["colorcet"]
[tool.setuptools_scm]
# Replace with version_file when Python 3.7 is dropped.
write_to = "colorcet/_version.py"
[tool.pytest.ini_options]
addopts = "-v --pyargs"
norecursedirs = "doc .git dist build _build .ipynb_checkpoints"