X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wrpylib.git/blobdiff_plain/5d56f386cd826bedc7f2831b6657fdb87df1a529..ce6bc552b71e965601005f4bdd4c6dfb10509290:/setup.py?ds=sidebyside diff --git a/setup.py b/setup.py index 61a0553..3b7c506 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,17 @@ # -*- coding: iso-8859-15 -*- from setuptools import setup +requires = [ + 'sqlalchemy', + 'geoalchemy' + ] + setup(name='wrpylib', - version='0.3.0', + version='0.5.0', description='Winterrodeln Python Library', author='Philipp Spitzer', author_email='philipp.spitzer@winterrodeln.org', + install_requires = requires, packages=['wrpylib'] )