-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 891 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 891 Bytes
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
[tool.poetry]
name = "podaac-forge-py"
version = "0.8.0a1"
description = "forge-py is a footprint generator (FOotpRint GEnerator) from science data netcdf files"
authors = ["James Wood <James.F.Wood@jpl.nasa.gov>"]
readme = "README.md"
packages = [
{ include = "podaac" },
]
[tool.poetry.dependencies]
python = "^3.12"
pyyaml = "^6.0"
alphashape = "^1.3.1"
np = "^1.0.2"
shapely = "^2.0.3"
xarray = "^2026.1.0"
cumulus-process = "^1.6.0"
requests = "^2.31.0"
netcdf4 = "^1.6.5"
pillow = "^12.0.0"
opencv-python-headless = "^4.11.0.0"
numpy = "^2.3.0"
[tool.poetry.group.dev]
optional = false
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.0"
flake8 = "^7.0.0"
pylint = "^4.0.0"
pytest-cov = "^7.0.0"
moto = "^5.0.13"
mock = "^5.1.0"
[tool.poetry.scripts]
forge-py = "podaac.forge_py.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"