-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (42 loc) · 1.47 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
from setuptools import setup, find_packages
##------------------ VERSIONING BEST PRACTICES --------------------------##
import versioneer
with open('README.md') as readme_file:
readme = readme_file.read()
#requirements = ["numpy>=1.19,<2",
# "pandas>=0.23",
# "matplotlib",
# "scikit-learn",
# "scipy>=1.2",
# "beautifulsoup4>=4.8"]
requirements = ["numpy",
"pandas",
"xarray",
"matplotlib",
"scikit-learn",
"scipy"]
extras = {"tests":"pytest",
"docs": ["nbsphinx","sphinx-argparse","numpydoc"]}
setup(
name='vtools3',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Timeseries analysis and processing tools using pandas/xarray",
license="Apache",
long_description=readme,
install_requires=requirements,
extras_require=extras,
include_package_data=True,
keywords='vtools',
packages=find_packages(),
author="Eli Ateljevich",
author_email='eli@water.ca.gov',
url='https://github.com/CADWRDeltaModeling/vtools3',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
entry_points = { 'console_scripts' : [] }
)