forked from MarkusPic/ehyd_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.04 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__ = "[email protected]"
__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='ehyd-tools',
version='0.1dev8',
packages=['ehyd_tools'],
url='https://github.com/MarkusPic/ehyd_tools',
license='MIT',
author='Markus Pichler',
author_email='[email protected]',
description='Various tools for exporting and analyzing >10a rain time-series from the '
'"ehyd.gv.at" platform of the Austian government.',
scripts=['bin/ehyd_tools'],
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",
],
)