-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 779 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
import setuptools
setuptools.setup(
name="superflexpy",
version="1.3.2",
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=["numba==0.57.1", "numpy==1.24.3"],
)