-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
25 lines (23 loc) · 924 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
#! /usr/bin/env python
from setuptools import setup
from pyDeltaRCM import shared_tools
setup(name='pyDeltaRCM',
version=shared_tools._get_version(),
author='The DeltaRCM Team',
license='MIT',
description="Python version of original Matlab DeltaRCM",
long_description=open('README.rst').read(),
packages=['pyDeltaRCM'],
include_package_data=True,
url='https://github.com/DeltaRCM/pyDeltaRCM',
project_urls={
'Documentation': 'https://deltarcm.org/pyDeltaRCM',
'Source': 'https://github.com/DeltaRCM/pyDeltaRCM',
'Tracker': 'https://github.com/deltaRCM/pyDeltaRCM/issues'},
install_requires=['matplotlib', 'netCDF4', 'scipy', 'numpy', 'pyyaml',
'numba'],
entry_points={
'console_scripts': [
'pyDeltaRCM=pyDeltaRCM.preprocessor:preprocessor_wrapper'],
}
)