-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
81 lines (75 loc) · 2.19 KB
/
setup.py
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
"""NASA APT API."""
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
inst_reqs = [
"boto3>=1.24",
"botocore>=1.27.51",
"uvicorn[standard]==0.20.0",
"fastapi==0.54.1",
"gunicorn==20.0.4",
"pandas==1.4.0",
"pydantic==1.5.1",
"requests==2.28.1",
"opensearch-py==2.0.0",
"requests-aws4auth==1.1.2",
"python-multipart==0.0.5",
"python-jose==3.2.0",
"SQLAlchemy==1.3.23",
"psycopg2-binary==2.8.6",
"aiofiles==0.6.0",
"fastapi_permissions==0.2.7",
"mangum>=0.9.0",
"awslambdaric==2.0.4",
"pydash==5.0.1",
"playwright==1.30.0",
"reportlab==4.0.4",
"pypdf==3.15.0",
"pdfplumber==0.10.2",
]
extra_reqs = {
"dev": ["pre-commit", "flake8", "black==22.3.0", "mypy", "isort", "types-requests"],
"deploy": [
"python-dotenv",
"aws-cdk-lib==2.87.0",
"constructs==10.2.69",
"aws-cdk.aws-apigatewayv2-alpha==2.87.0a0",
"aws-cdk.aws-apigatewayv2-integrations-alpha==2.87.0a0",
],
"test": [
"moto==2.0.8",
"factory-boy==3.2.0",
"pytest==6.2.2",
"pytest-cov==2.12.0",
"pytest-sqitch==0.1.1",
"testing-postgresql==1.3.0",
],
}
setup(
name="nasa_apt",
version="2.4.0-beta",
description="API for the NASA Algorith Publication Tool",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3",
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="",
author="Development Seed",
author_email="[email protected]",
url="https://github.com/developmentseed/nasa-apt",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
package_data={
"nasa_apt": ["templates/*.html", "templates/*.xml", "db/static/**/*.json"]
},
include_package_data=True,
zip_safe=False,
install_requires=inst_reqs,
extras_require=extra_reqs,
)