-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
68 lines (61 loc) · 1.82 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
63
64
65
66
67
68
import os
from setuptools import find_packages
from setuptools import setup
def local_file(path):
return os.path.relpath(
os.path.join(
os.path.dirname(__file__),
path,
),
)
# We can't import fuzz_lightyear.version, since it pulls in all other
# fuzz_lightyear modules. Therefore, we need to execute the file
# directly.
VERSION = None # needed for flake8
with open(local_file('fuzz_lightyear/version.py')) as f:
exec(f.read())
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='fuzz_lightyear',
packages=find_packages(exclude=(['test*', 'tmp*'])),
version=VERSION,
description='Vulnerability Discovery through Stateful Swagger Fuzzing',
long_description=long_description,
long_description_content_type='text/markdown',
license='Copyright Yelp, Inc. 2019',
author=', '.join([
'Aaron Loo <[email protected]>',
'Joey Lee <[email protected]>',
'Victor Zhou <[email protected]>',
]),
keywords=[
'fuzzer',
'security',
'swagger',
],
# Remember to update requirements-minimal.txt when making changes
# to this list.
install_requires=[
'bravado',
'cached-property',
'hypothesis>=4.56.1',
'pyyaml',
],
entry_points={
'console_scripts': [
'fuzz-lightyear = fuzz_lightyear.main:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Topic :: Security',
'Topic :: Software Development',
'Topic :: Software Development :: Testing :: Acceptance',
'Topic :: Utilities',
'Environment :: Console',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
],
)