v1.1 release 'Judge' - major improvements & fixes

This commit is contained in:
casterbyte 2025-03-02 22:35:33 +05:00
parent 657f4e4d5f
commit 95b59a9a0c
5 changed files with 1166 additions and 528 deletions

View file

@ -2,8 +2,8 @@ from setuptools import setup, find_packages
setup(
name="sara",
version="1.0",
url="https://github.com/casterbyte/sara",
version="1.1",
url="https://github.com/casterbyte/Sara",
author="Magama Bazarov",
author_email="caster@exploit.org",
scripts=['sara.py'],
@ -11,11 +11,14 @@ setup(
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license="Apache-2.0",
keywords=['mikrotik', 'routeros', 'config analyzer'],
keywords=['mikrotik', 'routeros', 'config analyzer', 'network security',],
packages=find_packages(),
install_requires=[
'colorama',
'netmiko',
'packaging',
],
py_modules=['cve_lookup'],
entry_points={
"console_scripts": ["sara = sara:main"],
},