-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
33 lines (31 loc) · 1.04 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="GRLP",
version="2.0.0-beta",
author="Andrew D. Wickert",
author_email="[email protected]",
description="Evolves gravel-bed river long profiles",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MNiMORPH/GRLP",
install_requires=[
'numpy',
'scipy',
'matplotlib',
],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Hydrology",
"Intended Audience :: Science/Research",
],
keywords='fluvial geomorphology sediment transport landscape evolution',
project_urls={
'Model page': 'https://csdms.colorado.edu/wiki/Model:GRLP',
},
)