-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
95 lines (83 loc) · 1.61 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
87
88
89
90
91
92
93
94
95
[tool.ruff]
target-version = "py39"
extend-select = ["I", "UP"]
[tool.pytest.ini_options]
addopts = "--cov=tastymap/ --cov-report=term-missing"
[tool.hatch]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
source = "regex_commit"
commit_extra_args = ["-e"]
path = "tastymap/__init__.py"
[tool.hatch.envs.default]
python = "3.9"
dependencies = [
"black",
"mypy",
"ruff",
"pytest",
"pytest-cov",
"mkdocs-material",
"mkdocstrings[python]",
"pytest-asyncio",
"panel",
"param",
"requests",
"xarray",
"netcdf4",
"pooch",
]
[tool.hatch.envs.default.scripts]
test = "pytest"
test-cov-xml = "pytest --cov-report=xml"
lint = [
"black .",
"ruff --fix .",
"mypy tastymap/",
]
lint-check = [
"black --check .",
"ruff .",
"mypy tastymap/",
]
docs-serve = "mkdocs serve"
docs-build = "mkdocs build"
[build-system]
requires = ["hatchling", "hatch-regex-commit"]
build-backend = "hatchling.build"
[project]
name = "tastymap"
authors = [
{ name = "tastymap" }
]
description = "Color palettes for your palate"
readme = "README.md"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Framework :: Matplotlib",
]
requires-python = ">=3.9"
dependencies = [
"numpy",
"matplotlib",
]
[project.optional-dependencies]
ui = [
"panel",
"param",
"requests",
"xarray",
"netcdf4",
"pooch",
]
ai = [
"marvin",
"pydantic",
]
[project.urls]
Documentation = "https://ahuang11.github.io/tastymap/"
Source = "https://github.com/ahuang11/tastymap"
[project.scripts]
tastymap = "tastymap.cli:main"