-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
21 lines (19 loc) · 1021 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
__author__ = 'Robert Cope'
__version__ = '0.0.2'
from setuptools import setup
import os
setup(name='Python Hantek 6022BE Wrapper',
author=__author__,
description='A Python API for using the inexpensive Hantek 6022BE USB Oscilloscope in Windows and Linux',
version=__version__,
license='GPLv2',
packages=['PyHT6022', 'PyHT6022.HantekFirmware'],
package_data={'PyHT6022': [os.path.join('HantekSDK', 'HTMarch.dll'),
os.path.join('HantekSDK', 'HTDisplayDll.dll'),
os.path.join('HantekFirmware', 'custom', 'build', 'firmware.ihx'),
os.path.join('HantekFirmware', 'modded', 'mod_fw_01.ihex'),
os.path.join('HantekFirmware', 'modded', 'mod_fw_iso.ihex'),
os.path.join('HantekFirmware', 'stock', 'stock_fw.ihex'),]},
include_package_data=True,
install_requires=['libusb1'])