-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
69 lines (62 loc) · 1.27 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
[project]
name = "mosaic"
dynamic = ["version"]
authors = [
{ name="E3SM Development Team", email="[email protected]" },
]
description = "A visualization package for MPAS meshes"
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"cartopy",
"cmocean",
"h5netcdf",
"netcdf4",
"matplotlib",
"numpy",
"pooch",
"pyproj",
"scipy",
"tqdm",
"xarray",
]
[project.optional-dependencies]
docs = [
# building documentation
"sphinx",
"myst-parser",
"sphinx-book-theme",
]
dev = [
# linting and testing
"pip",
"isort",
"flynt",
"flake8",
"mypy",
"pre-commit",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.isort]
multi_line_output = "3"
include_trailing_comma = true
force_grid_wrap = "0"
use_parentheses = true
line_length = "79"
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
ignore_missing_imports = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
[tool.setuptools.dynamic]
version = { attr = "mosaic.version.__version__" }