forked from developmentseed/titiler-pds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (36 loc) · 1.07 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
"""Setup titiler."""
from setuptools import find_packages, setup
inst_reqs = [
"titiler>=0.1.0,<0.2",
"tilebench",
"rio-tiler-pds>=0.5.0,<1.0",
"mangum>=0.10",
]
extra_reqs = {
"deploy": [
"aws-cdk.core==1.76.0",
"aws-cdk.aws_lambda==1.76.0",
"aws-cdk.aws_apigatewayv2==1.76.0",
"aws-cdk.aws_apigatewayv2_integrations==1.76.0",
],
"test": ["pytest", "pytest-cov", "pytest-asyncio", "requests"],
}
setup(
name="titiler_pds",
version="0.0.1",
description=u"TiTiler for AWS Public Dataset",
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",
],
packages=find_packages(exclude=["stack*", "tests*"]),
include_package_data=True,
zip_safe=False,
install_requires=inst_reqs,
extras_require=extra_reqs,
)