-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.47 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "scicomap.__version__"}
[tool.setuptools]
package-data = {"scicomap.data" = ["*.png", "*.npz", "*.gz", "*.jpg"]}
[project]
name = "scicomap"
dynamic = ["version"]
requires-python = ">=3.10"
description = "data visualization on maps with varying levels of granularity"
authors = [{name = "Thomas Bury", email = "[email protected]"}]
readme = {file = "README.md", content-type = "text/markdown"}
keywords = ["visualization", "color", "uniform", "scientific"]
license = {file = "LICENSE.md"}
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
"numpy",
"pandas",
"scipy",
"colorspacious",
"colorcet",
"cmcrameri",
"cmocean",
"cmasher >= 1.5.8",
"palettable >= 3.3.0",
"matplotlib >= 3.3.0",
]
[project.urls]
homepage = "https://github.com/ThomasBury/scicomap"
documentation = "https://github.com/ThomasBury/scicomap"
repository = "https://github.com/ThomasBury/scicomap.git"
changelog = "https://github.com/ThomasBury/scicomap"
Tracker = "https://github.com/ThomasBury/scicomap/issues"
[project.optional-dependencies]
doc = [
"ipykernel",
"ipython_genutils",
"pandoc",
"sphinx",
"sphinxawesome-theme==5.0.0b5",
"nbsphinx",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-tabs",
]
lint = [
"black",
"flake8"
]
test = [
"pytest",
"pytest-cov",
]