changeset 692:6cd8182a05d8

Install data via MANIFEST.in
author Stefano Rivera <stefano@rivera.za.net>
date Tue, 10 Sep 2019 16:50:53 -0300
parents 1eecaa7ed894
children a06689439eb0
files MANIFEST.in setup.py
diffstat 2 files changed, 8 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MANIFEST.in	Tue Sep 10 16:50:53 2019 -0300
@@ -0,0 +1,8 @@
+include *.txt
+recursive-include data *.txt
+recursive-include data/fonts *.ttf
+recursive-include data/icons *.ico *.icns *.png *.xpm
+recursive-include data/images *.png
+recursive-include data/levels *
+recursive-include data/music *.ogg
+recursive-include data/sounds *.ogg
--- a/setup.py	Tue Sep 10 16:55:43 2019 +0200
+++ b/setup.py	Tue Sep 10 16:50:53 2019 -0300
@@ -123,10 +123,5 @@
             ],
             'excludes': ['numpy'],
         }},
-    data_files=[
-        # 'COPYRIGHT',
-        'LICENSE.txt',
-        'README.txt',
-    ],
     include_package_data=True,
 )