]> ToastFreeware Gitweb - philipp/winterrodeln/wrpylib.git/blobdiff - setup.py
Nähere Details zu Rodelverleihs.
[philipp/winterrodeln/wrpylib.git] / setup.py
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..46cdfb1c80a9141354784c1fc78768b19d024823 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -0,0 +1,29 @@
+#!/usr/bin/python3
+from setuptools import setup
+
+requires = [
+    'sqlalchemy',
+    'gdal',
+    'mwparserfromhell',
+    ]
+
+setup(name='wrpylib',
+    version='0.7.0',
+    description='Winterrodeln Python Library',
+    author='Philipp Spitzer',
+    author_email='philipp.spitzer@winterrodeln.org',
+    install_requires = requires,
+    packages=['wrpylib'],
+    scripts=[
+        'scripts/createthumbnails.py',
+        'scripts/get_elevation.py',
+        'scripts/update_intermaps.py',
+        'scripts/updatewrinncache.py',
+        'scripts/updatewrmapcache.py',
+        'scripts/updatewrregioncache.py',
+        'scripts/updatewrreportcache.py',
+        'scripts/updatewrsledruncache.py',
+    ],
+    package_data={'wrpylib': ['templates/*']},
+    zip_safe=False,
+)