-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
62 lines (59 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
"""aiocogeo packaging"""
from setuptools import find_packages, setup
with open("README.md") as f:
desc = f.read()
extras = {
"s3": ["aioboto3"],
"dev": [
"mercantile",
"morecantile",
"rasterio",
"rio-tiler==2.0b9",
"pytest<5.4",
"pytest-asyncio<0.11.0",
"pytest-cov",
"shapely",
"aioboto3",
],
}
setup(
name="aiocogeo",
description="Asynchronous cogeotiff reader",
long_description=desc,
long_description_content_type="text/markdown",
version="0.3.0",
author=u"Jeff Albrecht",
author_email="geospatialjeff@gmail.com",
url="https://github.com/geospatial-jeff/aiocogeo",
license="mit",
python_requires=">=3.7",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
],
keywords="cogeo COG",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=[
"aiofiles",
"aiohttp<=3.6.2",
"aiocache",
"affine",
"imagecodecs",
"typer",
"Pillow",
"stac-pydantic>=1.3.*",
"geojson-pydantic==0.1.0",
"xmltodict",
],
test_suite="tests",
setup_requires=["pytest-runner"],
entry_points={"console_scripts": ["aiocogeo=aiocogeo.scripts.cli:app"]},
extras_require=extras,
tests_require=extras["dev"],
)