-
Notifications
You must be signed in to change notification settings - Fork 135
/
setup.py
56 lines (46 loc) · 1.73 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
51
52
53
54
55
56
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pyexfil import AUTHORS, RELEASE_DATE, NAME, URL, SLOGAN, VERSION
__author__ = AUTHORS[0]
__license__ = 'GPLv3'
__copyright__ = '%s, %s' % (RELEASE_DATE[0:3], AUTHORS[0])
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
required = [
'requests>=1.0.0', 'impacket>=0.9.0', 'slackclient', 'progressbar',
'zlib', 'numpy', 'Pillow', 'pytube3', 'hashlib', 'urllib2', 'PyCrypto',
'base58', 'names', 'Faker', 'luhn'
]
if __name__ == '__main__':
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
long_desc = "See full README and USAGE on GITHUB yisf %s." % (NAME)
setup(name='PyExfil',
maintainer=__author__,
maintainer_email='[email protected]',
description="A Python package for data exfiltration.",
license=__license__,
url=URL,
version=VERSION,
download_url=URL,
long_description=long_desc,
packages=['pyexfil'],
install_requires=required,
platforms='any',
classifiers=(
'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 :: 3',)
)