casterbyte.Sara/setup.py

26 lines
734 B
Python
Raw Normal View History

2024-08-06 17:33:40 +05:00
from setuptools import setup, find_packages
setup(
2024-08-17 20:00:26 +05:00
name="sara",
version="1.1",
url="https://github.com/casterbyte/Sara",
2024-08-06 17:33:40 +05:00
author="Magama Bazarov",
author_email="caster@exploit.org",
2024-08-17 20:00:26 +05:00
scripts=['sara.py'],
2024-08-06 17:33:40 +05:00
description="RouterOS Security Inspector",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license="Apache-2.0",
keywords=['mikrotik', 'routeros', 'config analyzer', 'network security',],
2024-08-06 17:33:40 +05:00
packages=find_packages(),
install_requires=[
'colorama',
'netmiko',
'packaging',
2024-08-06 17:33:40 +05:00
],
py_modules=['cve_lookup'],
2024-08-06 17:33:40 +05:00
entry_points={
2024-08-17 20:00:26 +05:00
"console_scripts": ["sara = sara:main"],
2024-08-06 17:33:40 +05:00
},
python_requires='>=3.11',
)