Changed the implementation of value_comment_from_str so that masked emails also work...
[philipp/winterrodeln/wrpylib.git] / setup.py
index 10e30bbc5986920f4240a0b4ce3562561945eb77..734b519180feba01fcc29d9747a6483075f00d78 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,12 +1,18 @@
-#!/usr/bin/python2.6
+#!/usr/bin/python3.4
 # -*- coding: iso-8859-15 -*-
 # -*- coding: iso-8859-15 -*-
-from distutils.core import setup
+from setuptools import setup
+
+requires = [
+    'sqlalchemy',
+    'gdal',
+    'mwparserfromhell',
+    ]
 
 setup(name='wrpylib',
 
 setup(name='wrpylib',
-    version='0.0.4',
+    version='0.6.0',
     description='Winterrodeln Python Library',
     author='Philipp Spitzer',
     author_email='philipp.spitzer@winterrodeln.org',
     description='Winterrodeln Python Library',
     author='Philipp Spitzer',
     author_email='philipp.spitzer@winterrodeln.org',
+    install_requires = requires,
     packages=['wrpylib']
 )
     packages=['wrpylib']
 )
-