| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -54,6 +54,21 @@ def check_install(): | |||
| 54 | 54 | check_install() | |
| 55 | 55 | ||
| 56 | 56 | ||
| 57 | + requirements = [ | ||
| 58 | + 'scruffington>=0.3.2', | ||
| 59 | + 'flask', | ||
| 60 | + 'flask_restful', | ||
| 61 | + 'blessed', | ||
| 62 | + 'pygments', | ||
| 63 | + 'requests', | ||
| 64 | + 'requests_unixsocket', | ||
| 65 | + 'six', | ||
| 66 | + 'pysigset' | ||
| 67 | + ] | ||
| 68 | + if sys.platform == 'win32': | ||
| 69 | + requirements.append('cursor') | ||
| 70 | + | ||
| 71 | + | ||
| 57 | 72 | setup( | |
| 58 | 73 | name="voltron", | |
| 59 | 74 | version="0.1.6", | |
@@ -65,18 +80,7 @@ def check_install(): | |||
| 65 | 80 | "vivisect vtrace windbg cdb pykd", | |
| 66 | 81 | url="https://github.com/snare/voltron", | |
| 67 | 82 | packages=find_packages(exclude=['tests', 'examples']), | |
| 68 | - install_requires=[ | ||
| 69 | - 'scruffington>=0.3.2', | ||
| 70 | - 'flask', | ||
| 71 | - 'flask_restful', | ||
| 72 | - 'blessed', | ||
| 73 | - 'pygments', | ||
| 74 | - 'requests', | ||
| 75 | - 'requests_unixsocket', | ||
| 76 | - 'six', | ||
| 77 | - 'pysigset', | ||
| 78 | - "cursor > 1.0 : sys.platform == 'win32'" | ||
| 79 | - ], | ||
| 83 | + install_requires=requirements, | ||
| 80 | 84 | package_data={'voltron': ['config/*']}, | |
| 81 | 85 | entry_points={ | |
| 82 | 86 | 'console_scripts': ['voltron=voltron:main'] | |
| Back | FazBrowse Home | New Git URL |
0 commit comments