-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
69 lines (62 loc) · 1.97 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
# Copyright 2019, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged.
# Any commercial use must be negotiated with the Office of Technology
# Transfer at the California Institute of Technology.
#
# This software may be subject to U.S. export control laws. By accepting
# this software, the user agrees to comply with all applicable U.S. export
# laws and regulations. User has the responsibility to obtain export
# licenses, or other export authority as may be required before exporting
# such information to foreign countries or providing access to foreign
# persons.
[tool.poetry]
name = "l2ss-py"
version = "2.14.0a0"
description = "L2 Subsetter Service"
authors = ["podaac-tva <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/podaac/l2ss-py"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
exclude = ['contrib', 'docs', 'tests']
packages = [
{ include = "podaac" },
]
[tool.poetry.dependencies]
python = "^3.10"
netCDF4 = "^1.5"
xarray = {version = "*", extras = ["parallel"]}
geopandas ="^1.0.1"
Shapely = "^2.0.6"
harmony-service-lib = { version = "<=2.2.0", optional = true }
pystac = { version = "^1.10.1", optional = true }
julian = "^0.14"
importlib-metadata = "^8.2.0"
h5py = "^3.6.0"
cf-xarray = "*"
numpy = "^1.26.4"
[tool.poetry.dev-dependencies]
pytest = "^8.0.2"
flake8 = "^7.0.0"
pytest-cov = "^6.0.0"
pylint = "^3.0.2"
sphinx = "^8.1.3"
pytest-benchmark = "^5.1.0"
moto = "^5.0.2"
jsonschema = "^4.20.0"
m2r2 = "^0.3.2"
sphinx-rtd-theme = "^3.0.2"
pytest-rerunfailures = "^15.0"
pytest-xdist = "^3.6.1"
[tool.pytest.ini_options]
junit_family = "xunit2"
[tool.poetry.extras]
harmony = ["harmony-service-lib", "pystac"]
[tool.poetry.scripts]
l2ss_harmony = 'podaac.subsetter.subset_harmony:main'
l2ss-py = 'podaac.subsetter.run_subsetter:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"