forked from developmentseed/titiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 1.18 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 metapackage."""
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
__version__ = "0.10.2"
inst_reqs = [
f"titiler.core=={__version__}",
f"titiler.mosaic=={__version__}",
f"titiler.application=={__version__}",
]
setup(
name="titiler",
version=__version__,
description="A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL.",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.8",
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="COG STAC MosaicJSON FastAPI Tile Server Dynamic",
author="Vincent Sarago",
author_email="[email protected]",
url="https://github.com/developmentseed/titiler",
license="MIT",
zip_safe=False,
install_requires=inst_reqs,
packages=[],
)