-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
55 lines (50 loc) · 1.53 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
"""Setup veda-backend."""
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
extra_reqs = {
"dev": ["pre-commit", "python-dotenv"],
"deploy": [
"aws-cdk-lib<3.0.0,>=2.47.0.a0",
"constructs>=10.0.0,<11.0.0",
"aws-cdk.aws_apigatewayv2_alpha~=2.47.0.a0",
"aws_cdk.aws_apigatewayv2_integrations_alpha~=2.47.0.a0",
"pydantic~=1.0",
"eoapi-cdk==5.4.0",
],
"test": [
"pytest",
"pytest-asyncio",
"pytest-cov",
"httpx==0.23.3",
"pypgstac==0.7.4",
"psycopg[binary, pool]",
"fastapi",
"openapi-schema-validator",
],
}
setup(
name="veda-backend",
description="",
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",
"Programming Language :: Python :: 3.9",
],
keywords="",
author="Development Seed",
author_email="[email protected]",
url="https://github.com/NASA-IMPACT/veda-backend",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
package_data={"veda-backend": ["templates/*.html", "templates/*.xml"]},
include_package_data=True,
zip_safe=False,
install_requires=[],
extras_require=extra_reqs,
)