Python: Fix package directory

This commit is contained in:
Vicki Pfau 2018-02-24 15:05:43 -05:00
parent 0a8986dcb2
commit 5df0edb2e1
2 changed files with 2 additions and 1 deletions

View File

@ -52,6 +52,7 @@ Bugfixes:
- GB Audio: Clock frame events on DIV
- GBA: Fix SharkPort saves for EEPROM games
- Qt: Fix opening in fullscreen (fixes mgba.io/i/993)
- Python: Fix package directory
Misc:
- GBA Timer: Use global cycles for timers
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)

View File

@ -22,7 +22,7 @@ setup(name="${BINARY_NAME}",
url="http://github.com/mgba-emu/mgba/",
packages=["mgba"],
package_dir={
"mgba": "${CMAKE_CURRENT_SOURCE_DIR}"
"mgba": "${CMAKE_CURRENT_SOURCE_DIR}/mgba"
},
setup_requires=['cffi>=1.6', 'pytest-runner'],
install_requires=['cffi>=1.6', 'cached-property'],