-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
120 lines (110 loc) · 2.54 KB
/
pyproject.toml
File metadata and controls
120 lines (110 loc) · 2.54 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "calmplots"
version = "0.1.2"
description = "Cohesive visualization themes for matplotlib, seaborn, plotnine, plotly, and altair."
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "Kunal K. Sarkhel", email = "ksarkhel@gmu.edu"}
]
keywords = ["visualization", "matplotlib", "seaborn", "plotnine", "plotly", "altair", "theme", "palette"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Visualization"
]
dependencies = []
[project.optional-dependencies]
matplotlib = ["matplotlib>=3.6"]
seaborn = ["seaborn>=0.12", "matplotlib>=3.6"]
plotnine = ["plotnine>=0.12"]
plotly = ["plotly>=5.15"]
altair = ["altair>=5.0"]
test = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pre-commit>=3.7",
"pyrefly>=0.54.0",
"build>=1.2"
]
docs = [
"sphinx>=7.4",
"furo>=2024.8.6"
]
gallery = [
"numpy>=1.24",
"pandas>=1.5",
"matplotlib>=3.6",
"seaborn>=0.12",
"plotnine>=0.12",
"plotly>=5.15",
"kaleido>=0.2.1,<1",
"altair>=5.0",
"vl-convert-python>=1.9.0"
]
all = [
"matplotlib>=3.6",
"seaborn>=0.12",
"plotnine>=0.12",
"plotly>=5.15",
"altair>=5.0"
]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pre-commit>=3.7",
"pyrefly>=0.54.0",
"build>=1.2",
"sphinx>=7.4",
"furo>=2024.8.6",
"numpy>=1.24",
"pandas>=1.5",
"matplotlib>=3.6",
"seaborn>=0.12",
"plotnine>=0.12",
"plotly>=5.15",
"kaleido>=0.2.1,<1",
"altair>=5.0",
"vl-convert-python>=1.9.0"
]
[project.urls]
Homepage = "https://techwizrd.github.io/calmplots/"
Repository = "https://github.com/techwizrd/calmplots/"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
calmplots = ["styles/*.mplstyle", "py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
markers = [
"unit: fast unit tests",
"integration: tests requiring optional plotting backends"
]
[tool.pyrefly]
project-includes = [
"src/**/*.py"
]
project-excludes = [
"docs/**",
"examples/**",
"**/.venv/**",
"**/__pycache__/**"
]
[tool.ruff]
target-version = "py39"
line-length = 88
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]