-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.52 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
[project]
name = "geocat.viz"
authors = [{ name = "GeoCAT Team", email = "geocat@ucar.edu" }]
classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering"
]
description = "GeoCAT-viz is the visualization component of the GeoCAT project and provides implementations of convenience functions for publication-ready plotting of geosciences data"
dynamic = ["version"]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"packaging",
"matplotlib",
"xarray",
"numpy",
"cartopy",
"cmaps",
"metpy",
"pint",
"scikit-learn"
]
[dependency-groups]
dev = [
"geocat-datafiles",
"pre-commit",
"pytest",
"pytest-mpl"
]
[project.urls]
documentation = "https://geocat-viz.readthedocs.io"
issue-tracker = "https://github.com/NCAR/geocat-viz/issues"
source-code = "https://github.com/NCAR/geocat-viz"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"setuptools-scm>=8",
]
[tool.setuptools_scm]
fallback_version = "9999"
[tool.ruff.format]
# preserve mixture of single and double quotes
quote-style = "preserve"
[tool.ruff.lint]
# Skip E402 Module level import not at top of cell
# Skip F401 Module imported but unused
ignore = ["E402", "F401"]