forked from ArtesiaWater/hydropandas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1022 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, find_packages
try:
import pypandoc
l_d = pypandoc.convert('README.md')
except:
l_d = ''
# Get the version.
version = {}
with open("version.py") as fp:
exec(fp.read(), version)
setup(
name='hydropandas',
version=version['__version__'],
description='hydropandas module by Artesia',
long_description=l_d,
url='https://artesia-water.nl',
author='Artesia',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
platforms='Windows, Mac OS-X',
install_requires=['numpy>=1.15', 'matplotlib>=3.0',
'pandas>=0.24', 'scipy>=1.2', ],
packages=find_packages(exclude=[]),
package_data={"hydropandas": ["data/*.json"]},
include_package_data=True
)