#!/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/update_wrinncache.py', 'scripts/update_wrmapcache.py', 'scripts/update_wrregioncache.py', 'scripts/update_wrreportcache.py', 'scripts/update_wrsledruncache.py', ], package_data={'wrpylib': ['templates/*']}, zip_safe=False, )