-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 820 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 820 Bytes
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
#-*- coding:utf-8 -*-
from setuptools import setup
setup(
name='muttfuzz',
version='1.2.28',
description='Fuzzing with mutants',
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
author="Alex Groce",
packages=['muttfuzz',],
license='MIT',
entry_points="""
[console_scripts]
muttfuzz = muttfuzz.fuzz:main
apply_mutant = muttfuzz.apply_mutant:main
libfuzzer_prune = muttfuzz.libfuzzer_prune:main
analyze_results = muttfuzz.analyze_results:main
""",
keywords='fuzzing mutation',
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
],
install_requires=[
],
url='https://github.com/agroce/muttfuzz',
)