File size: 736 Bytes
80ea6ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from setuptools import setup, find_packages
from os import path

def read(fname):
    return open(path.join(path.dirname(__file__), fname)).read()

setup(
    name='pymetasploit',
    author='Nadeem Douba',
    version='2.0',
    author_email='ndouba@gmail.com',
    description='A full-fledged msfrpc library for Metasploit framework.',
    license='GPL',
    packages=find_packages('src'),
    package_dir={ '' : 'src' },
    scripts=[
        'src/scripts/pymsfconsole',
        'src/scripts/pymsfrpc'
    ],
    install_requires=[
        'msgpack-python>=0.1.12'
    ],
    url='https://github.com/allfro/pymetasploit',
    download_url='https://github.com/allfro/pymetasploit/zipball/master',
    long_description=read('README')
)