mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2025-11-02 11:57:49 +00:00
added base template for dut library automation
Signed-off-by: shivam <shivam.thakur@candelatech.com>
This commit is contained in:
21
dut_lib_template/setup.py
Normal file
21
dut_lib_template/setup.py
Normal 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",
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user