mirror of
				https://github.com/Telecominfraproject/wlan-testing.git
				synced 2025-10-31 10:57:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			681 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			681 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 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",
 | |
|     ],
 | |
| )
 | 
