-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (89 loc) · 3.32 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (89 loc) · 3.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "ATL1415"
description = "Utilities for creating the NASA ICESat-2 ATL14/15 products"
keywords = [
"ICESat-2",
"ATL14",
"ATL15",
"ATL14/15"
]
authors = [
{name = "Ben Smith", email = "besmith@uw.edu"}
]
maintainers = [
{name = "ATL14/15 contributors"}
]
license = {file = "LICENSE"}
readme = "README.md"
version = "2.0.0"
requires-python = ">=3.6"
dependencies = [
"h5py",
"matplotlib",
"netCDF4",
"numpy",
"pyproj",
"scipy>=1.10.1",
"shapely",
"cartopy",
"imageio",
"pyTMD",
"pointCollection @git+https://github.com/SmithB/pointCollection.git",
"LSsurf @ git+ssh://git@github.com/smithb/LSsurf.git",
"SMBcorr @ git+ssh://git@github.com/smithb/SMBcorr.git"
]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Repository = "https://github.com/SmithB/ATL1415"
Issues = "https://github.com/SmithB/ATL1415/issues"
[project.optional-dependencies]
all = ["gdal", "notebook", "shapely"]
dev = ["flake8", "pytest>=4.6", "pytest-cov"]
[project.scripts]
"ATL11_to_ATL15.py" = "ATL1415.ATL11_to_ATL15:main"
"ATL14_browse_plots.py" = "ATL1415.scripts.ATL14_browse_plots:main"
"ATL14_write2nc.py" = "ATL1415.scripts.ATL14_write2nc:main"
"ATL15_browse_plots.py" = "ATL1415.scripts.ATL15_browse_plots:main"
"ATL15_write2nc.py" = "ATL1415.scripts.ATL15_write2nc:main"
"ATL15_write2nc_monthly.py" = "ATL1415.scripts.ATL15_write2nc_monthly:main"
"_usgs.py" = "ATL1415.scripts._usgs:main"
"check_tile_data_vs_DEM.py" = "ATL1415.scripts.check_tile_data_vs_DEM:main"
"make_200km_tiles.py" = "ATL1415.scripts.make_200km_tiles:main"
"make_ATL1415_queue.py" = "ATL1415.scripts.make_ATL1415_queue:main"
"make_GL_ATL1415_queue.py" = "ATL1415.scripts.make_GL_ATL1415_queue:main"
"make_field_size_report.py" = "ATL1415.scripts.make_field_size_report:main"
"requeue_slurm_errors.py" = "ATL1415.scripts.requeue_slurm_errors:main"
"requeue_slurm_killed.py" = "ATL1415.scripts.requeue_slurm_killed:main"
"requeue_slurm_running.py" = "ATL1415.scripts.requeue_slurm_running:main"
"setup_ATL1415_region.py" = "ATL1415.scripts.setup_ATL1415_region:main"
"setup_slurm_run.py" = "ATL1415.scripts.setup_slurm_run:main"
[tool.setuptools]
script-files = ["scripts/make_200km_to_mosaic_jobs.sh", "scripts/make_ATL11_index", "scripts/make_ATL11_index_discover", "scripts/make_mosaic_jobs", "scripts/make_mosaic_jobs_monthly", "scripts/run_antarctic_tonc.sh", "scripts/run_arctic_matched.sh", "scripts/run_arctic_mosaic.sh", "scripts/run_arctic_prelim.sh", "scripts/run_arctic_to_nc.sh"]
[tool.setuptools.packages.find]
exclude = ["test*"]
[tool.pytest.ini_options]
minversion = "6.0"
norecursedirs = ".git"
python_files = [
"test*.py"
]
testpaths = [
"test"
]