-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 888 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
from setuptools import setup, find_packages
VERSION = '0.0.1'
DESCRIPTION = 'A python client for accessing analysis and modeling data from ModelMyWatershed'
LONG_DESCRIPTION = 'A python client for accessing analysis and modeling data from ModelMyWatershed'
# Setting up
setup(
name="modelmw_client",
version=VERSION,
author="Sara Geleskie Damiano",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=['requests', 'pandas'],
keywords=['ModelMyWatershed', 'WikiWatershed', 'ModelMW'],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
]
)