-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
34 lines (30 loc) · 989 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
33
34
from setuptools import setup, find_packages
import os
VERSION = '0.2.5'
AUTHOR = 'Cisco SAS team'
EMAIL = '[email protected]'
URL = 'https://github.com/cisco-sas/katnip.git'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='katnip',
version=VERSION,
description='Extensions for the Kitty fuzzing framework',
long_description=read('README.rst'),
author=AUTHOR,
author_email=EMAIL,
url=URL,
packages=find_packages(),
install_requires=['kittyfuzzer'],
keywords='fuzz,fuzzing,framework,sulley,kitty,katnip',
package_data={},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Security',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Utilities'
]
)