X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wrpylib.git/blobdiff_plain/c3722db017f5f0022021fa47fedb3a0f3be49dce..4f8a622f50073d7e6837a60aa6fcd7fafc8131bb:/setup.py?ds=sidebyside diff --git a/setup.py b/setup.py index 51c76fd..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.0', + version='0.6.0', description='Winterrodeln Python Library', author='Philipp Spitzer', author_email='philipp.spitzer@winterrodeln.org', + install_requires = requires, packages=['wrpylib'] ) -