forked from mandiant/flare-floss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (57 loc) · 1.43 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
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2017 FireEye, Inc. All Rights Reserved.
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requirements = [
"q",
"pyyaml",
"simplejson",
"tabulate",
"vivisect==v0.0.20200804",
"plugnplay",
"viv-utils==0.3.17",
"enum34"
]
# this sets __version__
# via: http://stackoverflow.com/a/7071358/87207
# and: http://stackoverflow.com/a/2073599/87207
with open(os.path.join("floss", "version.py"), "rb") as f:
exec(f.read())
setup(
name='floss',
version=__version__,
description="FireEye Labs Obfuscated String Solver",
author="Willi Ballenthin, Moritz Raabe",
author_email='[email protected], [email protected]',
url='https://www.github.com/fireeye/flare-floss',
packages=[
'floss',
'floss.plugins',
],
package_dir={'floss': 'floss'},
entry_points={
"console_scripts": [
"floss=floss.main:main",
]
},
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
],
include_package_data=True,
install_requires=requirements,
zip_safe=False,
keywords='floss',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 2",
],
)