forked from cogeotiff/rio-cogeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.39 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
"""Setup."""
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
# Runtime requirements.
inst_reqs = [
"click>=7.0",
"rasterio>=1.1",
"numpy~=1.15",
"morecantile>=3.1,<4.0",
"pydantic",
]
extra_reqs = {
"test": ["pytest", "pytest-cov", "cogdumper"],
"dev": ["pytest", "pytest-cov", "pre-commit", "cogdumper"],
"docs": ["mkdocs", "mkdocs-material"],
}
setup(
name="rio-cogeo",
python_requires=">=3.7",
description=u"Cloud Optimized GeoTIFF (COGEO) creation plugin for rasterio",
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: GIS",
],
keywords="COGEO CloudOptimized Geotiff rasterio",
author=u"Vincent Sarago",
author_email="[email protected]",
url="https://github.com/cogeotiff/rio-cogeo",
license="BSD-3",
packages=find_packages(exclude=["tests"]),
install_requires=inst_reqs,
extras_require=extra_reqs,
entry_points={"rasterio.rio_plugins": ["cogeo=rio_cogeo.scripts.cli:cogeo"]},
)