2022-03-28 15:46:42 -03:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
import pathlib
|
|
|
|
|
2022-03-29 12:45:17 -03:00
|
|
|
VERSION = '2.0.5'
|
2022-03-28 15:46:42 -03:00
|
|
|
DESCRIPTION = 'Conn is a SSH/Telnet connection manager and automation module'
|
|
|
|
|
|
|
|
here = pathlib.Path(__file__).parent.resolve()
|
|
|
|
LONG_DESCRIPTION = (here / "README.md").read_text(encoding="utf-8")
|
|
|
|
|
|
|
|
# Setting up
|
|
|
|
setup(
|
|
|
|
name="conn",
|
|
|
|
version=VERSION,
|
|
|
|
author="Federico Luzzi",
|
|
|
|
author_email="<fluzzi@gmail.com>",
|
|
|
|
description=DESCRIPTION,
|
|
|
|
long_description=LONG_DESCRIPTION,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/fluzzi/connpy",
|
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=["inquirer","pexpect","pycryptodome","PyYAML"], # add any additional packages that
|
|
|
|
keywords=['networking', 'automation', 'ssh', 'telnet', 'connection manager'],
|
|
|
|
classifiers= [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Topic :: System :: Networking",
|
|
|
|
"Intended Audience :: Telecommunications Industry",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Natural Language :: English",
|
|
|
|
# "Operating System :: MacOS :: MacOS X",
|
|
|
|
# "Operating System :: Microsoft :: Windows",
|
|
|
|
"Operating System :: Unix"
|
2022-03-28 16:26:37 -03:00
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2022-03-29 12:45:17 -03:00
|
|
|
'conn=conn.app:main',
|
2022-03-28 16:26:37 -03:00
|
|
|
]
|
|
|
|
}
|
2022-03-28 15:46:42 -03:00
|
|
|
)
|