forked from ianmackinnon/python-ale
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
68966f4
commit b1a3b87
Showing
4 changed files
with
16 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
_in | ||
dist | ||
MANIFEST | ||
build |
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 |
---|---|---|
@@ -1,16 +1,22 @@ | ||
SHELL := /bin/bash | ||
.PHONY : all package install uninstall | ||
.PHONY : all package install uninstall test | ||
|
||
all : | ||
all : dist/ALE-0.1dev.tar.gz | ||
|
||
clean : | ||
rm -rf *.pyc dist MANIFEST build | ||
|
||
package : ale.py MANIFEST.in README.md setup.py | ||
python setup.py sdist | ||
|
||
dist/ALE-0.1dev.tar.gz : package | ||
|
||
install : dist/ALE-0.1dev.tar.gz | ||
install : | ||
sudo pip install dist/ALE-0.1dev.tar.gz | ||
|
||
uninstall : dist/ALE-0.1dev.tar.gz | ||
yes | sudo pip uninstall ale | ||
|
||
test : | ||
cd test && ./read_test.py | ||
|
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# Python ALE (python-ale) | ||
|
||
A reader for Avid ALE files. | ||
A reader for Avid ALE files. | ||
|
||
## Installation | ||
|
||
make && make install |
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