34 lines
960 B
Python
34 lines
960 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='sonic-platform',
|
||
|
version='1.0',
|
||
|
description='SONiC platform API implementation on RAGILE Platforms',
|
||
|
license='Apache 2.0',
|
||
|
author='SONiC Team',
|
||
|
author_email='support@ragile.com',
|
||
|
url='',
|
||
|
maintainer='RAGILE SUPPORT TEAM',
|
||
|
maintainer_email='',
|
||
|
packages=[
|
||
|
'sonic_platform',
|
||
|
'rgutil',
|
||
|
'eepromutil',
|
||
|
'sonic_pcie',
|
||
|
],
|
||
|
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',
|
||
|
)
|
||
|
|