added base template for dut library automation

Signed-off-by: shivam <shivam.thakur@candelatech.com>
This commit is contained in:
shivam
2022-09-07 00:48:59 +05:30
parent 06dfc1d944
commit 16a76e4bd9
15 changed files with 1880 additions and 26 deletions

21
dut_lib_template/setup.py Normal file
View File

@@ -0,0 +1,21 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='dut_lib_template',
version='0.1',
scripts=['dut_lib_template.py', 'controller.py', 'ap_lib.py', 'SetupLibrary.py', 'openwrt_ctl.py'],
author="Shivam Thakur",
author_email="shivam.thakur@candelatech.com",
description="TIP OpenWIFI 2.X Library",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)