-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
60 lines (51 loc) · 1.29 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
[tool.poetry]
name = "hydrocron"
version = "1.5.0a0"
description = "OpenAPI access to Time Series data for SWOT features"
authors = ["PO.DAAC <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/podaac/hydrocron"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
exclude = ['contrib', 'docs', 'tests']
packages = [
{include = "hydrocron"}
]
[tool.poetry.dependencies]
python = "^3.10"
six = "^1.16.0"
boto3 = "^1.28.2"
pymysql = "^1.1.1"
geopandas = "0.14.4"
earthaccess = "0.11.0"
shapely = "^2.0.1"
cryptography = "43.0.1"
python-dotenv = "^1.0.0"
geojson = "^3.1.0"
accept-types = "^0.4.1"
moto = "^5.0.9"
vcrpy = "^6.0.1"
python-cmr = "^0.13.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-dynamodb = "^2.2.3"
pylint = "^3.2.5"
flake8 = "^7.1.0"
pytest-cov = "^4.1.0"
[tool.poetry.group.docs.dependencies]
jupyter-book = "^0.15.1"
folium = "^0.16.0"
matplotlib = "^3.8.3"
[tool.poetry.group.test.dependencies]
pytz = "^2024.1"
[tool.coverage.run]
source = ['hydrocron']
relative_files = true
[tool.poetry.scripts]
hydrocron_api = "hydrocron.api.__main__:__main__"
hydrocron_load = 'hydrocron.db.load_data:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"