forked from Gallopsled/pwntools
-
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.
Made the setup.py work properly (I think)
- Loading branch information
Mathias Svensson
committed
Jul 26, 2014
1 parent
b63722e
commit 5f0ca44
Showing
4 changed files
with
74 additions
and
81 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 |
---|---|---|
|
@@ -6,3 +6,5 @@ | |
*/auto/* | ||
*/bin/* | ||
build | ||
MANIFEST | ||
dist |
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,12 @@ | ||
#!/bin/sh | ||
sudo pip install -r requirements.txt | ||
|
||
echo "================================================" | ||
echo "Now please put this directory in your PYTHONPATH" | ||
echo "and the bin directory in your PATH." | ||
echo | ||
echo "If you are using bash, you do can this by putting" | ||
echo "These in your .bashrc:" | ||
echo | ||
echo "export PATH=\"`realpath bin`:\$PATH\"" | ||
echo "export PYTHONPATH=\"`realpath .`:\$PYTHONPATH\"" |
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