-
Notifications
You must be signed in to change notification settings - Fork 52
/
pyproject.toml
86 lines (78 loc) · 2.32 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
[project]
name = "mpas_analysis"
dynamic = ["version"]
authors = [
{ name="Xylar Asay-Davis", email="[email protected]" },
{ name="Carolyn Begeman" },
{ name="Phillip J. Wolfram" },
{ name="Milena Veneziani" },
{ name="Darin Comeau" },
{ name="Steven Brus" },
{ name="Luke Van Roekel" },
{ name="Anirban Sinha" },
{ name="Riley Brady" },
{ name="Irena Vankova" },
{ name="Althea Denlinger" },
{ name="Elizabeth Hunke" },
{ name="Stephen Price" },
{ name="Adrian K. Turner" },
{ name="Kevin Rosa" },
{ name="Matt Hoffman" },
{ name="Mark Petersen" },
{ name="Charles Doutriaux" },
{ name="Alexander Hager" },
]
description = """\
Analysis for Model for Prediction Across Scales (MPAS) simulations.\
"""
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",
"Programming Language :: Python :: 3.13",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"cartopy>=0.18.0",
"cmocean",
"dask",
"gsw",
"lxml",
"matplotlib >=3.9.0",
"netcdf4",
"numpy >=2.0,<3.0",
"pandas",
"pillow >=10.0.0,<11.0.0",
"progressbar2",
"pyproj",
"python-dateutil",
"requests",
"scipy>=1.7.0",
"setuptools",
"shapely>=2.0,<3.0",
"six",
"xarray>=0.14.1"
]
[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 = "mpas_analysis.__init__.__version__" }
# evolution of options.entry-points
[project.scripts]
mpas_analysis = "mpas_analysis.__main__:main"
download_analysis_data = "mpas_analysis.download_data:download_analysis_data"
[project.urls]
Documentation = "https://mpas-dev.github.io/MPAS-Analysis/develop/"
"Bug Tracker" = "https://github.com/MPAS-Dev/MPAS-Analysis/issues"