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
258 B
Python
16 lines
258 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='ix9_32x',
|
|
version='1.0',
|
|
description='Module to initialize Quanta IX9-32X platforms',
|
|
|
|
packages=['ix9_32x'],
|
|
package_dir={'ix9_32x': 'ix9-32x/classes'},
|
|
)
|
|
|