forked from cogeotiff/rio-tiler-pds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 1.41 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
"""Setup for rio-tiler-pds."""
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
# Runtime requirements.
inst_reqs = ["rio-tiler>=3.0.0,<4.0", "rio-toa"]
extra_reqs = {
"test": ["pytest", "pytest-cov"],
"dev": ["pytest", "pytest-cov", "pre-commit"],
"docs": ["mkdocs", "mkdocs-material", "pygments", "mkapi"],
}
setup(
name="rio-tiler-pds",
version="0.6.0",
python_requires=">=3.7",
description="""Get mercator tile from cloud hosted dataset such as CBERS-4, Sentinel-2, Sentinel-1 and Landsat-8 AWS PDS""",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: GIS",
],
keywords="COG cogeo raster aws map tiler gdal rasterio",
author="Vincent Sarago",
author_email="[email protected]",
url="https://github.com/cogeotiff/rio-tiler-pds",
license="BSD",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
include_package_data=True,
zip_safe=False,
install_requires=inst_reqs,
extras_require=extra_reqs,
)