mirror of
https://github.com/casterbyte/Sara.git
synced 2025-07-09 22:24:27 +02:00
v1.1
This commit is contained in:
parent
f206cd9257
commit
e5c7200e02
4 changed files with 595 additions and 910 deletions
23
setup.py
Normal file
23
setup.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="vex",
|
||||
version="1.1",
|
||||
url="https://github.com/casterbyte/vex",
|
||||
author="Magama Bazarov",
|
||||
author_email="caster@exploit.org",
|
||||
scripts=['vex.py'],
|
||||
description="RouterOS Security Inspector",
|
||||
long_description=open('README.md').read(),
|
||||
long_description_content_type='text/markdown',
|
||||
license="Apache-2.0",
|
||||
keywords=['network security', 'mikrotik', 'routeros'],
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
'colorama',
|
||||
],
|
||||
entry_points={
|
||||
"console_scripts": ["vex = vex:main"],
|
||||
},
|
||||
python_requires='>=3.11',
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue