-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1008 Bytes
/
setup.py
File metadata and controls
37 lines (34 loc) · 1008 Bytes
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
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 9):
print("ERROR: AzShell requires Python >= 3.9")
sys.exit(1)
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name="azshell",
version="1.2.1",
author="Víctor Rodríguez",
author_email="vifreex@protonmail.com",
description="Azure APIs enumeration and abuse",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
url="https://github.com/vifreex/AzShell",
python_requires=">=3.9",
install_requires=[
"msal",
"cmd2==2.7.0",
"argparse",
"bs4"
],
entry_points={
"console_scripts": [
"azshell = AzShell.main:main",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)