forked from NASA-Planetary-Science/AmesCAP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.3 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "amescap"
version = "0.3"
description = "Analysis pipeline for the NASA Ames MGCM"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Mars Climate Modeling Center", email = "richard.a.urata@nasa.gov"}
]
urls = {Homepage = "https://github.com/NASA-Planetary-Science/AmesCAP"}
dependencies = [
"requests>=2.31.0",
"netCDF4>=1.6.5",
"numpy>=1.26.2",
"matplotlib>=3.8.2",
"scipy>=1.11.4",
"xarray>=2024.1.0",
"pandas>=2.0.3",
"pyodbc>=4.0.39",
"pypdf==6.10.0",
]
[project.optional-dependencies]
spectral = ["pyshtools>=4.10.0"]
dev = [
"sphinx>=7.2.6",
"sphinx-rtd-theme>=1.3.0rc1",
"sphinx-autoapi>=3.0.0",
]
[project.scripts]
cap = "amescap.cli:main"
MarsPull = "bin.MarsPull:main"
MarsInterp = "bin.MarsInterp:main"
MarsPlot = "bin.MarsPlot:main"
MarsVars = "bin.MarsVars:main"
MarsFiles = "bin.MarsFiles:main"
MarsFormat = "bin.MarsFormat:main"
MarsCalendar = "bin.MarsCalendar:main"
MarsNest = "bin.MarsNest:main"
[tool.setuptools]
packages = ["amescap", "bin"]
[tool.setuptools.data-files]
"mars_data" = ["mars_data/Legacy.fixed.nc"]
"mars_templates" = [
"mars_templates/legacy.in",
"mars_templates/amescap_profile"
]