-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.5 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
from setuptools import setup
import versioneer
# with open("README.md", "r") as readme:
# long_description = readme.read()
#
# with open('requirements.txt', 'r') as req:
# requirements = req.read().splitlines()
with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()
requirements = [
"xmltodict",
"pandas",
"numpy",
"owslib",
"suds-community",
"numba" #0.55.1
]
setup(
name='pywaterml',
version='1.2.25',
# cmdclass=versioneer.get_cmdclass(),
description="The pywaterml is a package that lets you handle WaterML functions such as GetValues, GetSitesInfo, etc. In addition it lets offers extra functions such as mean interpolation for data with gaps",
long_description=long_description,
long_description_content_type='text/markdown',
license='BSD 3-Clause',
license_family='BSD',
author="Elkin Giovanni Romero Bustamante",
author_email='[email protected]',
url='https://github.com/BYU-Hydroinformatics/pywaterml',
packages=['pywaterml'],
install_requires=requirements,
keywords='WaterML',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Hydrology',
'Topic :: Scientific/Engineering :: Visualization',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
]
)