mirror of https://github.com/mgba-emu/mgba.git
Python: Fix package directory
This commit is contained in:
parent
89d6770abd
commit
369bcc9511
1
CHANGES
1
CHANGES
|
@ -24,6 +24,7 @@ Bugfixes:
|
|||
- GBA Hardware: RTC accuracy improvements
|
||||
- GBA: Fix SharkPort saves for EEPROM games
|
||||
- Qt: Fix opening in fullscreen (fixes mgba.io/i/993)
|
||||
- Python: Fix package directory
|
||||
Misc:
|
||||
- GBA: Improve multiboot image detection
|
||||
- GB MBC: Remove erroneous bank 0 wrapping
|
||||
|
|
|
@ -21,7 +21,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'],
|
||||
install_requires=['cffi>=1.6', 'cached-property'],
|
||||
|
|
Loading…
Reference in New Issue