-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (32 loc) · 1.06 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
try: from setuptools import setup, find_packages
except:
from subprocess import Popen
Popen("pip install setuptools")
from setuptools import setup, find_packages
def read_requirements(file):
with open(file) as f:
return f.read().splitlines()
def read_file(file):
with open(file) as f:
return f.read()
long_description = read_file("README.md")
version = read_file("VERSION")
requirements = read_requirements("requirements.txt")
setup(
name = 'WebExploit',
version = version,
author = 'Mojia',
author_email = '[email protected]',
url = 'https://github.com/c4ssif3r/WebExploit',
description = 'Advanced Hacker Toolkit in your hands. WebExploit XD',
long_description_content_type = "text/x-rst",
long_description = long_description,
license = "MIT license",
packages = find_packages(exclude=["cores"]),
install_requires = requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: MIT License",
"Operating System :: OS Independent",
]
)