-
Notifications
You must be signed in to change notification settings - Fork 271
/
setup.py
23 lines (23 loc) · 931 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
from setuptools import setup
setup(name='roadtools',
version='0.0.2',
description=' A collection of Azure AD/Entra tools for offensive and defensive security purposes',
author='Dirk-jan Mollema',
author_email='[email protected]',
url='https://github.com/dirkjanm/ROADtools/',
license='MIT',
classifiers=[
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
packages=[],
zip_safe=False,
install_requires=['roadlib', 'roadrecon', 'roadtx']
)