a1268b34f5
#### Why I did it Support API 2.0 for S5248F platform #### How I did it Making changes to S5248F platform specific directory Co-authored-by: Arun LK <Arun_L_K@dell.com>
31 lines
954 B
Python
Executable File
31 lines
954 B
Python
Executable File
from setuptools import setup
|
|
|
|
setup(
|
|
name='sonic-platform',
|
|
version='1.0',
|
|
description='SONiC platform API implementation on DellEmc Platforms',
|
|
license='Apache 2.0',
|
|
author='SONiC Team',
|
|
author_email='linuxnetdev@microsoft.com',
|
|
url='https://github.com/Azure/sonic-buildimage',
|
|
maintainer='DellEMC',
|
|
maintainer_email='dell-sonic@dell.com',
|
|
packages=[
|
|
'sonic_platform',
|
|
],
|
|
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.7',
|
|
'Topic :: Utilities',
|
|
],
|
|
keywords='sonic SONiC platform PLATFORM',
|
|
)
|
|
|