-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (57 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
61 lines (57 loc) · 1.39 KB
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
[tool.poetry]
name = "maap-api-nasa"
version = "4.2.3rc1"
description = "NASA Python implementation of the MAAP API specification"
authors = ["MAAP-Project Platform <platform@MAAP-Project.github.com>"]
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"
cwl-utils = ">0.10"
python-gitlab = "^4.11.1"
Flask-JWT-Extended = "^4.6.0"
python-keycloak = "^4.1.0"
[tool.poetry.group.dev.dependencies]
pylint = "^3.1.0"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.11.1"
responses = "^0.23.0"
requests-mock = "^1.11.0"
faker = "^19.0.0"
factory-boy = "^3.3.0"
freezegun = "^1.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"