generated from agilescientific/snowfake
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
80 lines (73 loc) · 1.65 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
[build-system]
requires = ["setuptools>=65.0", "setuptools-scm>=7.0"]
build-backend = "setuptools.build_meta"
[project]
name = "unmap"
authors = [{ name="Matt Hall", email="kwinkunks@gmail.com" },]
description = "Unmap data from pseudocolor images."
dynamic = ["version"]
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["plotting", "reproducibility", "visualization", "color"]
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"fsspec",
"aiohttp",
"pillow",
"xarray",
"networkx",
"matplotlib",
"scikit-image",
]
[project.optional-dependencies]
test = [
"pytest",
"coverage[toml]",
"pytest-cov",
]
docs = [
"sphinx",
"sphinxcontrib-apidoc",
"furo",
"myst_nb",
"jupyter",
"gio",
]
dev = [
"build",
"pytest",
"coverage[toml]",
"pytest-cov",
"sphinx",
"sphinxcontrib-apidoc",
"furo",
"myst_nb",
"jupyter",
"gio",
]
[project.urls]
"documentation" = "https://scienxlab.github.io/unmap"
"repository" = "https://github.com/scienxlab/unmap"
[tool.setuptools]
packages = ["unmap"]
[tool.setuptools_scm]
write_to = "unmap/_version.py"
[tool.pytest.ini_options]
addopts = "--ignore=docs --cov=unmap"
[tool.coverage.run]
omit = [
"unmap/__init__.py",
"unmap/_version.py",
]