-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.22 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
import setuptools
from setuptools import find_packages
def readme():
with open("README.md") as f:
return f.read()
setuptools.setup(
name="appeears",
version="0.0.3",
packages=find_packages(),
url="https://github.com/samapriya/appeears",
install_requires=[
"tqdm >= 4.56.0",
"requests >= 2.28.1",
"natsort >= 8.1.0",
"beautifulsoup4>=4.11.1",
"tabulate >= 0.8.9",
"PyGeoj==1.0.0"
],
license="Apache 2.0",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
],
author="Samapriya Roy",
author_email="samapriya.roy@gmail.com",
description="Simple CLI for NASA AppEEARS API",
entry_points={
"console_scripts": [
"appeears=appeears.appeears:main",
],
},
)