-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 797 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
import setuptools
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(name='hackerman',
version='0.99.2',
description='A python library for penetration testing, security, development, and fun.',
long_description=read("README.md"),
long_description_content_type="text/markdown",
url='https://github.com/AgeOfMarcus/hackerman',
author='Marcus Weinberger',
author_email='marcus@marcusweinberger.com',
license='GPL',
packages=setuptools.find_packages(),
zip_safe=False,
install_requires=[
"cryptography",
"flask",
"flask-cors",
"requests",
"scapy",
"pyscreenshot",
"pynput",
"qrcode",
"bitcoin",
"sympy",
])