-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
32 lines (28 loc) · 961 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
import os
# packages = find_packages()
packages = ['autofz', 'autofz.fuzzer_driver', 'draw']
# https://github.com/google-research/arxiv-latex-cleaner/blob/main/setup.py
install_requires = []
with open("requirements.txt") as f:
for l in f.readlines():
l_c = l.strip()
if l_c and not l_c.startswith('#'):
install_requires.append(l_c)
setup(
name='autofz',
version='0.1',
description="a meta fuzzer for automated fuzzer composition at runtime",
packages=packages,
url='https://github.com/sslab-gatech/autofz',
author="Yu-Fu Fu",
author_email="[email protected]",
install_requires=install_requires,
entry_points={
'console_scripts': ['autofz = autofz.main:main',
'autofz-draw = draw.draw_main:main'],
},
package_data={'autofz': ['aflforkserver.so']},
python_requires=">=3.9.4",
)