-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 961 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
from setuptools import setup
import versioneer
requirements = [ "pandas",
"netcdf4",
"xarray",
"pyyaml",
"numba"
]
setup(
name='deltacd',
python_requires='<3.12',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Channel Depletions Model",
license="MIT",
author="California Department of Water Resources",
author_email='[email protected]',
url='https://github.com/cadwrdeltamodeling/deltacd',
packages=['deltacd'],
entry_points={
'console_scripts': [
'dcd = deltacd.dcd:main',
'detaw = deltacd.detaw:main',
'deltacd2dsm2 = deltacd.utils.deltacd2dsm2:main'
]
},
install_requires=requirements,
keywords='deltacd',
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
]
)