Skip to content

Commit

Permalink
improves #27
Browse files Browse the repository at this point in the history
  • Loading branch information
trolldbois committed Mar 13, 2016
1 parent e3554f8 commit 703aeea
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
11 changes: 6 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
pefile
python-ptrace
networkx
python-Levenshtein
pefile>=1.2.10_139
python-ptrace>=0.8.1 #; sys.platform != 'win32'
# winappdbg
networkx>=1.9.0
python-Levenshtein>=0.12
# lets try to use system package / will be install in setup
numpy
construct

# preptest requires it, not install
# ctypeslib2
# ctypeslib2
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import distutils.cmd
import distutils.log
import subprocess

import sys

class PyPrepTestsCommand(distutils.cmd.Command):
"""
Expand Down Expand Up @@ -119,13 +119,13 @@ def run(self):
## setup_requires=["numpy"],
# search: install requires only pefile, python-ptrace for memory-dump
# reverse: install requires networkx, numpy, Levenshtein for signatures
install_requires=["pefile",
"python-ptrace",
install_requires=["pefile>=1.2.10_139",
# reverse need these.
#"numpy",
#"networkx",
#"python-Levenshtein"
],
] + ["python-ptrace>=0.8.1"] if "win" not in sys.platform else []
+ ["winappdbg"] if "win" in sys.platform else [],
dependency_links=[#"https://github.com/trolldbois/ctypeslib/tarball/dev#egg=ctypeslib2-2.4beta",
"https://github.com/volatilityfoundation/volatility/tarball/master#egg=volatility-trunk",
"https://github.com/google/rekall/tarball/master#egg=rekall-trunk",
Expand Down

0 comments on commit 703aeea

Please sign in to comment.