-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.15 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
[tool.poetry]
name = "hydrocron"
version = "1.2.0a8"
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.0"
geopandas = "^0.13.2"
earthaccess = "^0.5.3"
shapely = "^2.0.1"
cryptography = "42.0.0"
python-dotenv = "^1.0.0"
geojson = "^3.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-dynamodb = "^2.2.3"
pylint = "^2.15.8"
flake8 = "^6.0.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.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"