2019-05-08 02:41:07 -05:00
|
|
|
#!/usr/bin/env python
|
2018-08-08 02:43:00 -05:00
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
from setuptools import setup
|
|
|
|
os.listdir
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='as7312_54x',
|
|
|
|
version='1.0',
|
|
|
|
description='Module to initialize Accton AS7312-54X platforms',
|
|
|
|
|
|
|
|
packages=['as7312_54x'],
|
|
|
|
package_dir={'as7312_54x': 'as7312-54x/classes'},
|
|
|
|
)
|
|
|
|
|