forked from podaac/l2ss-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (56 loc) · 1.87 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
# 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 = "1.1.0-alpha.0"
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.7,<4.0"
netCDF4 = "^1.5"
xarray = {version = "^.18", extras = ["parallel"]}
geopandas ="0.6.1"
Shapely = "^1.7.1"
harmony-service-lib = { version = "^1", optional = true }
pystac = { version = "^0.5.3", optional = true }
julian = "^0.14"
importlib-metadata = "^4.8.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.7"
pytest-cov = "^2.8"
pylint = "^2.4"
sphinx = "^2.2"
pytest-benchmark = "^3.2.3"
moto = "1.3.14"
jsonschema = "^3.2.0"
m2r2 = "^0.3.1"
sphinx-rtd-theme = "^0.5.2"
[tool.poetry.extras]
harmony = ["harmony-service-lib", "pystac"]
[tool.poetry.scripts]
run_worker = 'podaac.subsetter.subset_worker:main'
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"