From e78122a2a3a5acbf0f02f1bf53bcafff248d8411 Mon Sep 17 00:00:00 2001 From: Stefan Klug Date: Tue, 3 Nov 2015 23:10:45 +0100 Subject: [PATCH] include static files in setup.py and fix license --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index a261256..380d4c5 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f: setup( name='appypod', - version='0.9.4', + version='0.9.6', description='AppyPod', long_description=long_description, @@ -30,7 +30,7 @@ setup( author_email='klug.stefan@gmx.de', # Choose your license - license='LGPL-2', + license='GPL', # See https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ @@ -56,5 +56,8 @@ setup( # What does your project relate to? keywords='odf template odf development', - packages=find_packages(exclude=[]) + packages=find_packages(exclude=[]), + package_data={ + 'appy.pod': ['*.xml', 'imageNotFound.jpg'], + }, ) \ No newline at end of file