This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
executable file
·51 lines (46 loc) · 1.92 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os, sys
from setuptools import setup
readme = open('README.rst').read()
long_description = readme
doclink = '''
Documentation
-------------
The full documentation is at http://workbench.rtfd.org. '''
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
exec(open('workbench/server/version.py').read())
setup(
name='workbench',
version=__version__,
description='A scalable framework for security research and development teams.',
long_description=readme + '\n\n' + doclink + '\n\n' + history,
author='The Workbench Team',
author_email='[email protected]',
url='http://github.com/SuperCowPowers/workbench',
packages=['workbench', 'workbench.server',
'workbench.server.bro', 'workbench.workers',
'workbench.workers.rekall_adapter',
'workbench.clients', 'workbench_apps', 'workbench_apps.workbench_cli'],
package_dir={'workbench': 'workbench', 'workbench_apps': 'workbench_apps'},
include_package_data=True,
scripts=['workbench/server/workbench_server', 'workbench_apps/workbench_cli/workbench'],
tests_require=['tox'],
install_requires=['cython', 'distorm3', 'elasticsearch', 'funcsigs', 'flask', 'filemagic',
'ipython==5.3.0', 'lz4', 'mock', 'numpy', 'pandas', 'pefile',
'py2neo==1.6.4', 'pymongo', 'pytest', 'rekall==1.0.3', 'requests',
'ssdeep==2.9-0.3', 'urllib3', 'yara', 'zerorpc', 'cython'],
license='MIT',
zip_safe=False,
keywords='workbench security python',
classifiers=[
'Topic :: Security',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Unix',
'Natural Language :: English',
'Programming Language :: Python :: 2.7'
]
)