-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (28 loc) · 963 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
setup(
name='taskAutom',
version='8.2.2',
description='A simple task automation tool',
long_description='A simple task automation tool for NOKIA SROS based routers',
long_description_content_type='text/x-rst',
url='https://github.com/laimaretto/taskAutom',
author='Lucas Aimaretto',
author_email='laimaretto@gmail.com',
license='BSD 3-clause',
packages=['src/taskAutom'],
install_requires=['sshtunnel==0.4.0',
'netmiko==4.3.0',
'pandas>=1.5.2,<=2.0.3',
'pyyaml==5.3.1',
'python-docx==0.8.11',
],
python_requires='>=3.8',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': ['taskAutom=src.taskAutom.taskAutom:main'],
},
)