Download this file

15 lines (13 with data), 624 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
from setuptools import setup, find_packages
setup(name='OpenBCI_Python',
version='1.0.2',
description='A lib for controlling OpenBCI Devices',
author='AJ Keller',
author_email='pushtheworldllc@gmail.com',
license='MIT',
packages=find_packages(),
install_requires=['numpy'],
url='https://github.com/openbci/openbci_python', # use the URL to the github repo
download_url='https://github.com/openbci/openbci_python/archive/v1.0.2.tar.gz',
keywords=['device', 'control', 'eeg', 'emg', 'ekg', 'ads1299', 'openbci', 'ganglion', 'cyton', 'wifi'],
zip_safe=False)