forked from RemotePixel/remotepixel-tiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.26 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
"""Setup remotepixel-tiler"""
from setuptools import setup, find_packages
with open("remotepixel_tiler/__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
# Runtime requirements.
inst_reqs = [
"rio-tiler~=1.1",
"lambda-proxy~=3.0.0",
"aws-sat-api~=2.0",
"rio_rgbify",
"requests",
"rio-color",
]
extra_reqs = {
"test": ["mock", "pytest", "pytest-cov"],
"dev": ["mock", "pytest", "pytest-cov", "pre-commit"],
}
setup(
name="remotepixel_tiler",
version=version,
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"]
},
)