X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wrpylib.git/blobdiff_plain/e9139295986cf15c016ac257ec498c8cdf6c61ab..47d9a34c71d2d18c70a568c4abd82df648592a47:/setup.py diff --git a/setup.py b/setup.py index 8c1d607..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 distutils.core import setup +from setuptools import setup + +requires = [ + 'sqlalchemy', + 'geoalchemy' + ] setup(name='wrpylib', - version='0.0.5', + version='0.4.1', description='Winterrodeln Python Library', author='Philipp Spitzer', author_email='philipp.spitzer@winterrodeln.org', + install_requires = requires, packages=['wrpylib'] )