X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wrpylib.git/blobdiff_plain/7d7392a25642f07889ef893a9d5540feb9edd4c6..5eac54985c8b2b3ff7d2be7e3df77ed269d3c6f8:/setup.py diff --git a/setup.py b/setup.py index 534cab9..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.13', + version='0.6.0', description='Winterrodeln Python Library', author='Philipp Spitzer', author_email='philipp.spitzer@winterrodeln.org', + install_requires = requires, packages=['wrpylib'] ) -