-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
14 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
recursive-include src * | ||
recursive-include rle_python_interface * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,8 +29,6 @@ def run_cmake(): | |
ds.spawn(['make', '-j', str(cores_to_use)]) | ||
except ds.DistutilsExecError: | ||
print "Error while running cmake" | ||
print "run 'setup.py build --help' for build options" | ||
print "You may also try editing the settings in CMakeLists.txt file and re-running setup" | ||
sys.exit(-1) | ||
|
||
########################### | ||
|
@@ -43,18 +41,18 @@ def run(self): | |
os.chdir(cwd) | ||
|
||
setup(name = 'rle_python_interface', | ||
version='1.0.3', | ||
version='1.0.4', | ||
description = 'Retro Learning Environment Python Interface based on Ben Goodrich\'s work', | ||
url='https://github.com/nadavbh12/Retro-Learning-Environment', | ||
download_url='https://github.com/nadavbh12/Retro-Learning-Environment/tarball/1.0.3', | ||
download_url='https://github.com/nadavbh12/Retro-Learning-Environment/tarball/1.0.4', | ||
author='Nadav Bhonker, Shai Rozenberg', | ||
author_email='[email protected];[email protected]', | ||
license = 'GPL', | ||
packages=['rle_python_interface'], | ||
package_dir={'rle_python_interface': 'rle_python_interface'}, | ||
package_data={'rle_python_interface': ['librle_c.so', | ||
'stella_libretro.so', | ||
'snes9x2010_libretrolinux-x86_64.so', | ||
'snes9x2010_libretro.so', | ||
'genesis_plus_gx_libretro.so']}, | ||
cmdclass={'build': Build } | ||
) |