-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathsetup.py
35 lines (32 loc) · 937 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
33
34
35
# Installs this tool in your system
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "tornado",
version = "1.3.6",
author = "samogod",
license = "MIT",
keywords = ["Tornado", "Tor reverse shell", "reverse shell", "metasploit", "tor"],
url = "https://github.com/samogod/tornado",
packages=find_packages(),
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
install_requires=[
'colorama',
'requests',
'wget',
'stem',
],
entry_points={
'console_scripts': [
'tornado = tornado.__main__:main'
]
},
)