forked from RemotePixel/remotepixel-tiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1017 Bytes
/
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
"""Setup remotepixel-tiler"""
from setuptools import setup, find_packages
# Runtime requirements.
inst_reqs = [
"aws-sat-api~=2.0",
"lambda-proxy~=5.0",
"rio-color",
"rio-tiler>=1.2.10",
"rio_tiler_mosaic",
]
extra_reqs = {
"test": ["mock", "pytest", "pytest-cov"],
"dev": ["mock", "pytest", "pytest-cov", "pre-commit"],
}
setup(
name="remotepixel-tiler",
version="5.0.1",
description=u"""""",
long_description=u"",
python_requires=">=3",
classifiers=["Programming Language :: Python :: 3.6"],
keywords="",
author=u"Vincent Sarago",
author_email="[email protected]",
url="https://github.com/remotepixel/remotepixel-tiler",
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,
entry_points={
"console_scripts": ["remotepixel-tiler = remotepixel_tiler.scripts.cli:cli"]
},
)