X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wrpylib.git/blobdiff_plain/7207b725418fde189c4485f111132d91c8c4bba0..a687b570422ec5813d6886304a1d0199eef52ff3:/setup.py diff --git a/setup.py b/setup.py index 926da50..734b519 100644 --- a/setup.py +++ b/setup.py @@ -1,19 +1,18 @@ -#!/usr/bin/python2.7 +#!/usr/bin/python3.4 # -*- coding: iso-8859-15 -*- from setuptools import setup requires = [ 'sqlalchemy', - 'geoalchemy', - 'formencode' + 'gdal', + 'mwparserfromhell', ] setup(name='wrpylib', - version='0.5.0', + version='0.6.0', description='Winterrodeln Python Library', author='Philipp Spitzer', author_email='philipp.spitzer@winterrodeln.org', install_requires = requires, packages=['wrpylib'] ) -