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