-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1002 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
40
41
42
43
44
45
46
"""Setup cbersgif."""
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
inst_reqs = [
"Click",
"numpy",
"Pillow",
"aws-sat-api",
"pyproj",
"Shapely",
"imageio",
"rasterio",
"requests",
]
extra_reqs = {
"dev": ["pytest", "pytest-cov", "tox", "pylint", "pre-commit"],
"test": [
"pytest"
],
#"deploy": [],
}
setup(
name="cbersgif",
version="0.2.0",
description=u"Animated GIFs from CBERS data on AWS",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires="==3.7.9",
author=u"Frederico Liporace",
author_email="[email protected]",
url="https://github.com/fredliporace/cbersgif",
packages=find_packages(exclude=["tests*"]),
entry_points="""
[console_scripts]
cbersgif=cbersgif.cli.cbersgif:main
""",
zip_safe=False,
install_requires=inst_reqs,
extras_require=extra_reqs,
)