mirror of
https://github.com/dirkjanm/ROADtools
synced 2026-06-08 13:48:32 +00:00
a6f9ae9493
* New Microsoft Graph Support for RoadRecon * Fixing MFA endpoint + some other bits and bobs * Fixing setup.py * more MFA fixes * fixing MFA page and WHFB * linked against the original metadef files and removed changes from server.py, gather.py and sertup.py * moving changes to existing files to help track changes
42 lines
1.5 KiB
Python
42 lines
1.5 KiB
Python
from setuptools import setup
|
|
setup(name='roadrecon',
|
|
version='1.6.1',
|
|
description='Azure AD recon for red and blue',
|
|
author='Dirk-jan Mollema',
|
|
author_email='dirkjan@dirkjanm.io',
|
|
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',
|
|
],
|
|
packages=['roadtools.roadrecon', 'roadtools.roadrecon.plugins'],
|
|
package_data={'roadtools.roadrecon.plugins': ['*.yaml']},
|
|
install_requires=[
|
|
'roadlib>=0.21',
|
|
'flask<3',
|
|
'sqlalchemy>=1.4',
|
|
'marshmallow',
|
|
'flask-sqlalchemy>=2.5',
|
|
'flask-marshmallow',
|
|
'flask-cors',
|
|
'marshmallow-sqlalchemy>=0.29',
|
|
'aiohttp',
|
|
'openpyxl'
|
|
],
|
|
extras_require={
|
|
'road2timeline': ['pyyaml', 'numpy', 'pandas']
|
|
},
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
entry_points={
|
|
'console_scripts': ['roadrecon-gui=roadtools.roadrecon.server:main',
|
|
'roadrecon=roadtools.roadrecon.main:main']
|
|
}
|
|
) |