-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
71 lines (49 loc) · 1.46 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='plebnet',
version='0.3.0',
description='Working class botnet',
long_description=long_description,
url='https://github.com/GioAc96/Dollynator',
author='Dollynator',
author_email='authentic8989@gmail.com',
license='LGPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: System :: Installation/Setup',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux',
],
keywords='botnet',
packages=find_packages(exclude=['docs']) + ['plebnet.twisted.plugins'],
install_requires=[
'twisted',
'requests',
'names',
'faker',
'jsonpickle',
'rsa',
'cryptography'
],
extras_require={
'dev': [],
'test': ['mock', 'pytest', 'responses'],
},
package_data={
'plebnet': [],
},
entry_points={
'console_scripts': [
'plebnet=plebnet.cmdline:execute',
],
},
)