mirror of
				https://github.com/Telecominfraproject/ols-nos.git
				synced 2025-11-04 03:57:57 +00:00 
			
		
		
		
	Why I did it Add two platform that support s3IP framework How I did it Add two platforms supporting S3IP SYSFS (TCS8400, TCS9400) How to verify it Manual test
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
from setuptools import setup
 | 
						|
 | 
						|
setup(
 | 
						|
    name='sonic-platform',
 | 
						|
    version='1.0',
 | 
						|
    description='SONiC platform API implementation on Ruijie TCS9400 Platforms',
 | 
						|
    license='Apache 2.0',
 | 
						|
    author='SONiC Team',
 | 
						|
    author_email='sonic_rd@ruijie.com.cn',
 | 
						|
    url='',
 | 
						|
    maintainer='Ruijie TCS9400',
 | 
						|
    maintainer_email='',
 | 
						|
    packages=[
 | 
						|
        'sonic_platform',
 | 
						|
        'plat_hal',
 | 
						|
        'rjutil',
 | 
						|
        'eepromutil',
 | 
						|
        'hal-config',
 | 
						|
        'config',
 | 
						|
    ],
 | 
						|
    py_modules=[
 | 
						|
        'hal_pltfm',
 | 
						|
        'platform_util',
 | 
						|
        'platform_intf',
 | 
						|
    ],
 | 
						|
    classifiers=[
 | 
						|
        'Development Status :: 3 - Alpha',
 | 
						|
        'Environment :: Plugins',
 | 
						|
        'Intended Audience :: Developers',
 | 
						|
        'Intended Audience :: Information Technology',
 | 
						|
        'Intended Audience :: System Administrators',
 | 
						|
        'License :: OSI Approved :: Apache Software License',
 | 
						|
        'Natural Language :: English',
 | 
						|
        'Operating System :: POSIX :: Linux',
 | 
						|
        'Programming Language :: Python :: 3.9',
 | 
						|
        'Topic :: Utilities',
 | 
						|
    ],
 | 
						|
    keywords='sonic SONiC platform PLATFORM',
 | 
						|
)
 | 
						|
 |