forked from developmentseed/titiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (60 loc) · 1.88 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
"""Setup titiler."""
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
inst_reqs = [
"brotli-asgi>=1.0.0",
"email-validator",
"fastapi~=0.61",
"jinja2",
"python-dotenv",
"rio-color",
"rio-cogeo~=2.0a5",
"rio-tiler>=2.0.0b17",
"cogeo-mosaic>=3.0.0a13,<3.1",
]
extra_reqs = {
"dev": ["pytest", "pytest-cov", "pytest-asyncio", "pre-commit", "requests"],
"server": ["uvicorn", "click==7.0"],
"lambda": ["mangum>=0.10.0"],
"deploy": [
"docker",
"python-dotenv",
"aws-cdk.core",
"aws-cdk.aws_lambda",
"aws-cdk.aws_apigatewayv2",
"aws-cdk.aws_ecs",
"aws-cdk.aws_ec2",
"aws-cdk.aws_autoscaling",
"aws-cdk.aws_ecs_patterns",
],
"test": ["pytest", "pytest-cov", "pytest-asyncio", "requests"],
"docs": ["nbconvert", "mkdocs", "mkdocs-material", "mkdocs-jupyter", "pygments"],
}
setup(
name="titiler",
version="0.1.0a8",
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",
"Programming Language :: Python :: 3.8",
],
keywords="COG STAC MosaicJSON FastAPI Serverless",
author=u"Vincent Sarago",
author_email="[email protected]",
url="https://github.com/developmentseed/titiler",
license="MIT",
packages=find_packages(exclude=["tests*", "stack"]),
package_data={"titiler": ["templates/*.html", "templates/*.xml"]},
include_package_data=True,
zip_safe=False,
install_requires=inst_reqs,
extras_require=extra_reqs,
)