forked from cogeotiff/rio-cogeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (43 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
44
45
46
47
48
49
50
"""Setup."""
from setuptools import setup, find_packages
with open("rio_cogeo/__init__.py") as f:
for line in f:
if line.find("__version__") >= 0:
version = line.split("=")[1].strip()
version = version.strip('"')
version = version.strip("'")
continue
with open("README.rst") as f:
readme = f.read()
# Runtime requirements.
inst_reqs = ["rasterio[s3]~=1.0"]
extra_reqs = {
"test": ["pytest", "pytest-cov"],
"dev": ["pytest", "pytest-cov", "pre-commit"],
}
setup(
name="rio-cogeo",
version=version,
description=u"CloudOptimized GeoTIFF (COGEO) creation plugin for rasterio",
long_description=readme,
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering :: GIS",
],
keywords="COGEO CloudOptimized Geotiff rasterio",
author=u"Vincent Sarago",
author_email="[email protected]",
url="https://github.com/mapbox/rio-cogeo",
license="BSD-3",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
install_requires=inst_reqs,
extras_require=extra_reqs,
entry_points="""
[rasterio.rio_plugins]
cogeo=rio_cogeo.scripts.cli:cogeo
""",
)