forked from dalmo1991/superflexPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 840 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
import setuptools
import os
setuptools.setup(
name='superflexpy',
version='1.3.1',
author='Marco Dal Molin, Fabrizio Fenicia, Dmitri Kavetski',
author_email='marco.dalmolin.1991@gmail.com',
description='Framework for building hydrological models',
long_description=open(os.path.join(os.path.dirname(__file__),
"README.md")).read(),
long_description_content_type='text/markdown',
url='https://superflexpy.readthedocs.io/en/latest/',
license='LGPL',
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable', # https://martin-thoma.com/software-development-stages/
'Topic :: Scientific/Engineering :: Hydrology',
],
install_requires=[
'numpy>=1.19.*',
'numba>=0.50.*',
],
)