mirror of
https://github.com/dirkjanm/ROADtools
synced 2026-06-08 13:48:32 +00:00
21 lines
713 B
Python
21 lines
713 B
Python
from setuptools import setup
|
|
setup(name='roadtools',
|
|
version='0.0.1',
|
|
description='The Azure AD tooling framework',
|
|
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',
|
|
],
|
|
packages=[],
|
|
zip_safe=False,
|
|
install_requires=['roadlib', 'roadrecon']
|
|
)
|