-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (45 loc) · 1.11 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
[tool.poetry]
name = "maap-api-nasa"
version = "4.1.0"
description = "NASA Python implementation of the MAAP API specification"
authors = ["MAAP-Project Platform <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
packages = [
{include = "api"}
]
include = [
{ path = "logging.conf", format = ["sdist", "wheel"] }
]
[tool.poetry.dependencies]
python = "^3.9.0"
cachetools = "^5.3.3"
gunicorn = "^22.0.0"
requests = "^2.31.0"
pyshp = "^2.3.1"
gitpython = "^3.1.43"
pyjwt = "^2.8.0"
xmltodict = "^0.13.0"
boto3 = "^1.34.91"
owslib = "^0.30.0"
requests-file = "^2.0.0"
natsort = "^8.4.0"
pillow = "^10.3.0"
pyproj = "^3.6.1"
psycopg2 = {version = "^2.9.9", platform = "linux"}
psycopg2-binary = {version = "^2.9.9", platform = "darwin"}
marshmallow-sqlalchemy = "^1.0.0"
mapproxy = "^2.0.2"
pycryptodome = "^3.20.0"
werkzeug = "^2.2"
flask = "^2"
flask-cors = "^4.0.0"
flask-restx = "^1.3.0"
flask-api = "^3.1"
flask-sqlalchemy = "^3.1.1"
cryptography = "^43.0.0"
[tool.poetry.group.dev.dependencies]
pylint = "^3.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"