-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 870 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 870 Bytes
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
from setuptools import find_packages, setup
import rrmpg
with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="rrmpg",
version=rrmpg.__reversion__,
author=rrmpg.__author__,
author_email="f.kratzert[at]gmail.com",
description=("Rainfall-Runoff-Model-PlayGround: a Python library for"
"hydrological modeling."),
url="https//www.github.com/kratzert/RRMPG",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
license="MIT-License",
keywords="hydrology rainfall-runoff modeling",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License"],
python_requires=">=3.11",
)