95c67d2d55
Add device and platform code for ix7-bwde, ix8a-bwde. Support platform API 2.0 for all quanta platforms except for ix1b Co-authored-by: robert.hong <robert.hong@qct.io>
16 lines
261 B
Python
16 lines
261 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='ix8_56x',
|
|
version='1.0',
|
|
description='Module to initialize Quanta IX8-56X platforms',
|
|
|
|
packages=['ix8_56x'],
|
|
package_dir={'ix8_56x': 'ix8-56x/classes'},
|
|
)
|
|
|