-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
40 lines (37 loc) · 1.05 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
#!/usr/bin/env python
#coding:utf-8
from setuptools import setup, find_packages
import sys, os
version = '1.5'
setup(name='pocs',
version=version,
description="POC-T Stong Version POC-T加强版",
long_description="""\
rivir""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='PoC,Exp,POC-T, POC-S, Pentest',
author='rivir',
author_email='[email protected]',
url='https://github.com/jiangsir404/POC-S',
license='',
packages=find_packages(include=('*')),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'requests',
'gevent',
'shodan',
'google-api-python-client',
"bottle",
"paste",
"click"
],
entry_points={
"console_scripts": [
"poc-s=pocs.pocs:main",
"pocs=pocs.pocs:main",
"pocs_dnslog=pocs.pocs_dnslog:main"
]
},
)