mirror of https://github.com/mgba-emu/mgba.git
Python: Fix package directory
This commit is contained in:
parent
0a8986dcb2
commit
5df0edb2e1
1
CHANGES
1
CHANGES
|
@ -52,6 +52,7 @@ Bugfixes:
|
||||||
- GB Audio: Clock frame events on DIV
|
- GB Audio: Clock frame events on DIV
|
||||||
- GBA: Fix SharkPort saves for EEPROM games
|
- GBA: Fix SharkPort saves for EEPROM games
|
||||||
- Qt: Fix opening in fullscreen (fixes mgba.io/i/993)
|
- Qt: Fix opening in fullscreen (fixes mgba.io/i/993)
|
||||||
|
- Python: Fix package directory
|
||||||
Misc:
|
Misc:
|
||||||
- GBA Timer: Use global cycles for timers
|
- GBA Timer: Use global cycles for timers
|
||||||
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
|
- GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
|
||||||
|
|
|
@ -22,7 +22,7 @@ setup(name="${BINARY_NAME}",
|
||||||
url="http://github.com/mgba-emu/mgba/",
|
url="http://github.com/mgba-emu/mgba/",
|
||||||
packages=["mgba"],
|
packages=["mgba"],
|
||||||
package_dir={
|
package_dir={
|
||||||
"mgba": "${CMAKE_CURRENT_SOURCE_DIR}"
|
"mgba": "${CMAKE_CURRENT_SOURCE_DIR}/mgba"
|
||||||
},
|
},
|
||||||
setup_requires=['cffi>=1.6', 'pytest-runner'],
|
setup_requires=['cffi>=1.6', 'pytest-runner'],
|
||||||
install_requires=['cffi>=1.6', 'cached-property'],
|
install_requires=['cffi>=1.6', 'cached-property'],
|
||||||
|
|
Loading…
Reference in New Issue