-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
71 lines (66 loc) · 1.97 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
"""Setup covid_api."""
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
inst_reqs = [
"fastapi==0.60.0",
"jinja2==3.0.3",
"python-binary-memcached",
"rio-color",
"rio-tiler==2.0a.11",
"fiona",
"shapely",
"area",
"rasterio==1.1.8",
"rasterstats",
"geojson-pydantic",
"requests",
"mercantile",
]
extra_reqs = {
"dev": ["pytest", "pytest-cov", "pytest-asyncio", "pre-commit"],
"server": ["uvicorn", "click==7.0"],
"deploy": [
"docker",
"attrs",
"aws-cdk.core>=1.72.0",
"aws-cdk.aws_lambda>=1.72.0",
"aws-cdk.aws_apigatewayv2>=1.72.0",
"aws-cdk.aws_apigatewayv2_integrations>=1.72.0",
"aws-cdk.aws_ecs>=1.72.0",
"aws-cdk.aws_ec2>=1.72.0",
"aws-cdk.aws_autoscaling>=1.72.0",
"aws-cdk.aws_ecs_patterns>=1.72.0",
"aws-cdk.aws_iam>=1.72.0",
"aws-cdk.aws_elasticache>=1.72.0",
],
"test": ["moto[iam]", "mock", "pytest", "pytest-cov", "pytest-asyncio", "requests"],
}
setup(
name="covid_api",
version="0.6.2",
description=u"",
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=u"Development Seed",
author_email="[email protected]",
url="https://github.com/developmentseed/covid_api",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
package_data={
"covid_api": ["templates/*.html", "templates/*.xml", "db/static/**/*.json"]
},
include_package_data=True,
zip_safe=False,
install_requires=inst_reqs,
extras_require=extra_reqs,
)