diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index b2130e4..29e9eba 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -551,7 +551,11 @@
1408910743754
1408910743754
-
+
+ 1408910822475
+ 1408910822475
+
+
@@ -583,12 +587,12 @@
-
+
-
+
@@ -622,7 +626,8 @@
-
+
+
diff --git a/MANIFEST b/MANIFEST
index 9557647..245f9b9 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -37,8 +37,19 @@ gooey\gui\option_reader.py
gooey\gui\option_reader_unittest.py
gooey\gui\runtime_display_panel.py
gooey\gui\styling.py
+gooey\images\__init__.py
+gooey\images\alessandro_rei_checkmark.png
+gooey\images\computer.png
+gooey\images\computer2.png
+gooey\images\computer3.png
+gooey\images\icon.ico
+gooey\images\images.jpg
+gooey\images\loader.gif
+gooey\images\settings2.png
gooey\languages\__init__.py
gooey\languages\eng.py
+gooey\languages\english.json
+gooey\languages\french.json
gooey\mockapplications\__init__.py
gooey\mockapplications\example_argparse_souce_in_main.py
gooey\mockapplications\example_argparse_souce_in_try.py
diff --git a/MANIFEST.in b/MANIFEST.in
index 35d6621..f8b4808 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,2 +1,3 @@
include *.txt
-recursive-include docs *.txt
\ No newline at end of file
+include *.png
+include *.json
\ No newline at end of file
diff --git a/gooey/images/__init__.py b/gooey/images/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/setup.py b/setup.py
index bb83cc3..97522a2 100644
--- a/setup.py
+++ b/setup.py
@@ -6,17 +6,27 @@ with open('README.md') as readme:
local_path = os.path.join(os.path.dirname(__file__), 'gooey')
-images = [image for image in os.listdir(os.path.join(local_path, 'images'))]
+imagepath = os.path.join(local_path, 'images')
+langpath = os.path.join(local_path, 'languages')
-languages = [lang
- for lang in os.listdir(os.path.join(local_path, 'languages'))
+images = [os.path.join(imagepath, image) for image in os.listdir(imagepath)]
+
+languages = [os.path.join(langpath, lang)
+ for lang in os.listdir(langpath)
if '.py' not in lang]
+print(images)
+print(languages)
+
setup(
name='Gooey',
version='0.1.0',
author='Chris Kiehl',
author_email='ckiehl@gmail.com',
+ data_files=[
+ ('', images),
+ ('', languages)
+ ],
packages=[
'gooey',
'gooey.gui',
@@ -25,10 +35,6 @@ setup(
'gooey.mockapplications',
],
- data_files=[
- ('gooey/images', images),
- ('gooey/languages', languages)
- ],
url='http://pypi.python.org/pypi/Gooey/',
license='LICENSE.txt',
description='Turn (almost) any command line program into a full GUI application with one line',