mirror of
				https://github.com/Telecominfraproject/wlan-testing.git
				synced 2025-10-31 19:08:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			698 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			698 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import setuptools
 | |
| 
 | |
| with open("README.md", "r") as fh:
 | |
|     long_description = fh.read()
 | |
| 
 | |
| setuptools.setup(
 | |
|     name='perfecto_interop',
 | |
|     version='0.1',
 | |
|     scripts=["perfecto_interop.py", "android_libs.py", "ios_libs.py", "android_tests.py", "ios_tests.py"],
 | |
|     author="Shivam Thakur",
 | |
|     author_email="shivam.thakur@candelatech.com",
 | |
|     description="TIP OpenWIFI Perfecto Test Automation",
 | |
|     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",
 | |
|     ],
 | |
| )
 | |
| 
 | 
