-
Notifications
You must be signed in to change notification settings - Fork 605
/
setup.py
35 lines (33 loc) · 1.32 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
from pocsuite import (
__version__ as version, __author__ as author,
__author_email__ as author_email, __license__ as license)
setup(
name='pocsuite',
version=version,
description="Pocsuite is an open-sourced remote vulnerability testing framework developed by the Knownsec Security Team.",
long_description="""\
Pocsuite is an open-sourced remote vulnerability testing and proof-of-concept development framework developed by the Knownsec Security Team. It comes with a powerful proof-of-concept engine, many niche features for the ultimate penetration testers and security researchers.""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='PoC,Exp,Pocsuite',
author=author,
author_email=author_email,
url='http://pocsuite.org',
license=license,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'lxml',
],
entry_points={
'console_scripts': [
'pocsuite = pocsuite.pocsuite_cli:main',
'pcs-console = pocsuite.pocsuite_console:main',
'pcs-verify = pocsuite.pocsuite_verify:main',
'pcs-attack = pocsuite.pocsuite_attack:main',
],
},
)