forked from ytisf/PyExfil
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·50 lines (42 loc) · 1.65 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
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'Yuval tisf Nativ'
__license__ = 'GPLv3'
__copyright__ = '2014, Yuval tisf Nativ'
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
required = ['requests>=1.0.0', 'impacket>=0.9.0']
if __name__ == '__main__':
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
long_desc = open('README.md').read() + '\n\n' + open('LICENSE.md').read()
setup(name='PyExfil',
maintainer=__author__,
maintainer_email='[email protected]',
description="""PyExfil: Python communication library over non-standard channels.""",
license=__license__,
url='https://www.github.com/ytisf/pyexfil',
version="0.0.1 Beta",
download_url='https://www.github.com/ytisf/pyexfil',
long_description=long_desc,
packages=['pyexfil'],
install_requires=required,
platforms='any',
classifiers=(
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Environment :: Console',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',)
)