-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
41 lines (34 loc) · 944 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
"""
@author Chris R. Vernon
@email: [email protected]
@Project: Xanthos 2.0
License: BSD 2-Clause, see LICENSE and DISCLAIMER files
Copyright (c) 2017, Battelle Memorial Institute
"""
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='xanthos',
version='2.4.1',
packages=find_packages(),
url='https://github.com/JGCRI/xanthos',
license='BSD2-Simplified',
author='Chris R. Vernon',
author_email='[email protected]',
description='A global hydrologic modeling framework',
long_description=readme(),
long_description_content_type="text/markdown",
install_requires=[
"numpy~=1.19.4",
"scipy>=1.6",
"pandas~=1.1.4",
"configobj>=5.0.6",
"joblib~=1.0.1",
"matplotlib~=3.4.2",
"requests"
],
python_requires='>=3.6',
include_package_data=True
)