-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
44 lines (39 loc) · 1.07 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
import subprocess
import sys
from setuptools import setup
from distutils.command.build import build as DistutilsBuild
class Build(DistutilsBuild):
def run(self):
try:
subprocess.check_call(['make', 'all'], cwd='gym_fuzz1ng/mods')
except subprocess.CalledProcessError as e:
sys.stderr.write("Could not build mods: %s.\n" % e)
raise
DistutilsBuild.run(self)
setup(
name='gym_fuzz1ng',
version='0.0.9',
platforms='Posix',
install_requires=[
'gym>=0.10.3',
'xxhash>=1.0.1',
'posix_ipc>=1.0.3',
],
author='adbq, spolu',
package_data={
'gym_fuzz1ng.mods': [
'afl-2.52b-mod/afl-2.52b/afl-forkserver',
'libpng-1.6.34-mod/libpng_simple_fopen_afl',
'simple_bits-mod/simple_bits_afl',
'simple_loop-mod/simple_loop_afl',
],
},
packages=[
'gym_fuzz1ng',
'gym_fuzz1ng.coverage',
'gym_fuzz1ng.mods',
'gym_fuzz1ng.envs',
],
cmdclass={'build': Build},
include_package_data=True
)