-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (41 loc) · 1.33 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
"""Setup titiler-application."""
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
with open('requirements.txt') as f:
inst_reqs = f.readlines()
with open('requirements-dev.txt') as f:
test_reqs = f.readlines()
with open('deployment/requirements.txt') as f:
deploy_reqs = f.readlines()
extra_reqs = {
"test": test_reqs,
"server": ["uvicorn[standard]>=0.12.0,<0.14.0"],
"deploy": deploy_reqs,
}
setup(
name="cava-tiler",
version="1.0.0",
description=u"CAVA Tile Service",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.6",
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
author=u"Landung Setiawan",
author_email="[email protected]",
url="https://github.com/cormorack/cava-tiler",
license="MIT",
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
zip_safe=False,
install_requires=inst_reqs,
extras_require=extra_reqs,
)