Skip to content

Commit

Permalink
Fix missing kivy.tools in setup.py (#5230)
Browse files Browse the repository at this point in the history
* Fix missing parts of kivy.tools in python package

* Fix typo
  • Loading branch information
KeyWeeUsr committed Jun 27, 2017
1 parent 7daea78 commit aaca07b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1009,16 +1009,18 @@ def get_extensions_from_sources(sources):
'tests/*.png',
'tests/*.ttf',
'tests/*.ogg',
'tools/highlight/*.vim',
'tools/highlight/*.el',
'tools/gles_compat/*',
'tools/highlight/*',
'tools/packaging/README.txt',
'tools/packaging/win32/kivy.bat',
'tools/packaging/win32/kivyenv.sh',
'tools/packaging/win32/README.txt',
'tools/packaging/osx/Info.plist',
'tools/packaging/osx/InfoPlist.strings',
'tools/gles_compat/*.h',
'tools/packaging/osx/kivy.sh'] + binary_deps},
'tools/packaging/osx/kivy.sh',
'tools/pep8checker/*',
'tools/theming/defaulttheme/*',
] + binary_deps},
data_files=[] if split_examples else list(examples.items()),
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit aaca07b

Please sign in to comment.