mirror of
https://github.com/casterbyte/Sara.git
synced 2025-06-20 21:35:43 +02:00
26 lines
No EOL
760 B
Python
26 lines
No EOL
760 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="sara",
|
|
version="1.2",
|
|
url="https://github.com/casterbyte/Sara",
|
|
author="Magama Bazarov",
|
|
author_email="magamabazarov@mailbox.org",
|
|
scripts=['sara.py'],
|
|
description="RouterOS Security Inspector",
|
|
long_description=open('README.md', encoding="utf8").read(),
|
|
long_description_content_type='text/markdown',
|
|
license="Apache-2.0",
|
|
keywords=['mikrotik', 'routeros', 'config analyzer', 'network security',],
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'colorama',
|
|
'netmiko',
|
|
'packaging',
|
|
],
|
|
py_modules=['cve_analyzer'],
|
|
entry_points={
|
|
"console_scripts": ["sara = sara:main"],
|
|
},
|
|
python_requires='>=3.11',
|
|
) |