2021-05-17 14:30:20 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
from setuptools import setup
|
|
|
|
os.listdir
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='esc600-128q',
|
|
|
|
version='1.0',
|
|
|
|
description='Module to initialize Cameo Esc601-128q platforms',
|
|
|
|
|
|
|
|
packages=['esc600-128q'],
|
|
|
|
package_dir={'esc600-128q': 'esc600-128q/credo_baldeagle/python_wheel'},
|
2021-07-21 11:09:36 -05:00
|
|
|
package_data={'esc600-128q': 'esc600-128q/credo_baldeagle/python_wheel/*.py'}
|
2021-05-17 14:30:20 -05:00
|
|
|
)
|