X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wrpylib.git/blobdiff_plain/e6639cfba33379194a88487dfa1c6c03767271e2..f4d40e29174d8b4d8c472675058a77085c893e51:/setup.py diff --git a/setup.py b/setup.py index f83fbf7..db714c3 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,18 @@ -#!/usr/bin/python2.6 +#!/usr/bin/python2.7 # -*- coding: iso-8859-15 -*- from setuptools import setup +requires = [ + 'sqlalchemy', + 'geoalchemy' + ] + setup(name='wrpylib', - version='0.0.21', + version='0.4.1', description='Winterrodeln Python Library', author='Philipp Spitzer', author_email='philipp.spitzer@winterrodeln.org', + install_requires = requires, packages=['wrpylib'] )