-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixing build system to use setuptools and wheel install #376
Changes from 1 commit
f1d6cd9
628c071
008bd36
1b98a7d
7662a95
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,22 +24,19 @@ classifiers = | |
[options] | ||
zip_safe = true | ||
include_package_data = true | ||
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.* | ||
#, != 3.3.* | ||
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.* | ||
setup_requires = | ||
setuptools | ||
install_requires = | ||
setuptools | ||
|
||
#test_suite = tests.tests.Tests | ||
dependency_links = ['git+https://github.com/devttys0/yaffshiv.git'] | ||
#'git+https://github.com/devttys0/sasquatch.git', | ||
|
||
[options.extras_require] | ||
plots = matplotlib | ||
x86 = capstone | ||
YAFFS = yaffshiv | ||
#SQUASH = sasquatch | ||
#YAFFS = yaffshiv @ git+https://github.com/devttys0/yaffshiv.git | ||
#SQUASH = sasquatch @ git+https://github.com/devttys0/sasquatch.git' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you have forgotten the tick There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should I just remove them altogether then? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess, no. I prefer to keep these commented out lines as a reminder to fix them in future when the bug in pip will be fixed. |
||
|
||
[options.entry_points] | ||
console_scripts = binwalk = binwalk.__main__:main | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This breaks things. You need to comment out the part starting from
@
, not to comment out the line entirely.