-
Notifications
You must be signed in to change notification settings - Fork 91
/
setup.py
32 lines (27 loc) · 868 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
from os import path
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
setup(
name='pymetasploit3',
author='Dan McInerney',
version='1.0.6',
author_email='[email protected]',
description='A full-fledged msfrpc library for Metasploit framework.',
license='GPL',
packages=find_packages(exclude='tests'),
scripts=[
'pymetasploit3/scripts/pymsfconsole.py',
'pymetasploit3/scripts/pymsfrpc.py'
],
install_requires=[
'msgpack',
'requests',
'retry'
],
url='https://github.com/DanMcInerney/pymetasploit3',
download_url='https://github.com/DanMcInerney/pymetasploit3/zipball/master',
long_description=read('README.md'),
long_description_content_type="text/markdown"
)