Fixed tests that failed because of missing parameters.
[philipp/winterrodeln/wrpylib.git] / setup.py
1 #!/usr/bin/python3.4
2 # -*- coding: iso-8859-15 -*-
3 from setuptools import setup
4
5 requires = [
6     'sqlalchemy',
7     'gdal',
8     'mwparserfromhell',
9     ]
10
11 setup(name='wrpylib',
12     version='0.6.0',
13     description='Winterrodeln Python Library',
14     author='Philipp Spitzer',
15     author_email='philipp.spitzer@winterrodeln.org',
16     install_requires = requires,
17     packages=['wrpylib']
18 )