adding setup

This commit is contained in:
fluzzi 2022-03-28 15:46:42 -03:00
parent 8f6c1703ac
commit 940f9964f7
2 changed files with 34 additions and 1 deletions

View File

@ -1,4 +1,4 @@
inquirer~=2.9.1 inquirer~=2.9.2
pexpect~=4.8.0 pexpect~=4.8.0
pycryptodome~=3.14.1 pycryptodome~=3.14.1
PyYAML~=6.0 PyYAML~=6.0

33
setup.py Normal file
View File

@ -0,0 +1,33 @@
from setuptools import setup, find_packages
import pathlib
VERSION = '2.0.0'
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"
]
)