-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (47 loc) · 1.06 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup
import versioneer
default_requirements = [
# data
'pandas',
'xarray',
'scikit-learn',
'statsmodels',
'dask',
'numba',
# visualization
'pyepsg',
'geopandas',
'holoviews',
'hvplot',
'matplotlib',
'bokeh',
'geoviews'
]
conda_forge_requirements = [
'ipyleaflet',
'spatialpandas'
]
requirements = default_requirements + conda_forge_requirements
setup(
name='pyiwfm',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Python utilities for IWFM",
license="MIT",
author="Nicky Sandhu",
author_email='psandhu@water.ca.gov',
url='https://github.com/dwr_psandhu/pyiwfm',
packages=['pyiwfm'],
entry_points={
'console_scripts': [
'pyiwfm=pyiwfm.cli:cli'
]
},
install_requires=requirements,
keywords='pyiwfm',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)