forked from MarkusPic/intensity_duration_frequency_analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 1.03 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
__author__ = "Markus Pichler"
__credits__ = ["Markus Pichler"]
__maintainer__ = "Markus Pichler"
__email__ = "markus.pichler@tugraz.at"
__version__ = "0.1"
__license__ = "MIT"
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='idf-analysis',
version='0.1.11-18',
packages=['idf_analysis'],
url='https://github.com/MarkusPic/intensity_duration_frequency_analysis',
license='MIT',
author='Markus Pichler',
author_email='markus.pichler@tugraz.at',
description='heavy rain as a function of the duration and the return period acc. to DWA-A 531 (2012)',
scripts=['bin/idf_analysis'],
install_requires=requirements,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)