-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
84 lines (75 loc) · 2.05 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
[project]
name = "polaris"
dynamic = ["version"]
authors = [
{ name="Xylar Asay-Davis", email="[email protected]" },
{ name="Carolyn Begeman" },
{ name="Althea Denlinger" },
{ name="Steven Brus" },
{ name="Kat Smith" },
{ name="Darin Comeau" },
{ name="Alice Barthel" },
{ name="LeAnn Conlon" },
{ name="Joseph H Kennedy" },
]
description = "Testing and analysis for Omega, MPAS-Ocean, MALI and MPAS-Seaice"
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
# these are only for searching/browsing projects on PyPI
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"cartopy",
"cmocean",
"importlib_resources",
"ipython",
"jigsawpy",
"jupyter",
"lxml",
"matplotlib>=3.9.0",
"netcdf4",
"numpy>=2.0,<3.0",
"progressbar2",
"pyamg>=4.2.2",
"pyproj",
"ruamel.yaml",
"requests",
"scipy>=1.8.0",
"shapely>=2.0,<3.0",
"xarray",
]
[tool.isort]
multi_line_output = "3"
include_trailing_comma = true
force_grid_wrap = "0"
use_parentheses = true
line_length = "79"
skip = ["e3sm_diags/e3sm_diags_driver.py"]
[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
[build-system]
requires = ["setuptools>=60"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["deploy*", "docs*", "e3sm_submodules*", "licenses*", "utils*"]
[tool.setuptools.dynamic]
version = { attr = "polaris.version.__version__" }
# evolution of options.entry-points
[project.scripts]
polaris = "polaris.__main__:main"
mpas_to_yaml = "polaris.yaml:main_mpas_to_yaml"
[project.urls]
Documentation = "https://docs.e3sm.org/polaris"
"Bug Tracker" = "https://github.com/E3SM-Project/polaris/issues"