-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.py
29 lines (25 loc) · 888 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
from setuptools import setup
with open("README.md", 'r', encoding='utf-8') as f:
readme = f.read()
with open("GraphSpy/version.txt", 'r', encoding='utf-8') as f:
__version__ = f.read()
with open('requirements.txt', 'r', encoding='utf-8') as f:
requirements = [x.strip() for x in f.readlines()]
setup(
name='GraphSpy',
version=__version__,
author='RedByte1337',
url='https://github.com/RedByte1337/GraphSpy',
description="Initial Access and Post-Exploitation Tool for AAD and O365 with a browser-based GUI",
long_description=readme,
long_description_content_type="text/markdown",
install_requires=requirements,
package_data={'': ['static/**/*','templates/*','version.txt']},
include_package_data=True,
packages=[
"GraphSpy"
],
entry_points={
"console_scripts": ["graphspy=GraphSpy.GraphSpy:main"],
}
)