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