9d778b64f8
* working lab streaming layer example for Cyton * working lab streaming layer example for Cyton * working lab streaming layer example for Cyton * readme formatting * more readme formatting * typo '-_- * more detail in readme * clarifying readme code * more readme edits * clarified main readme * added sudo note
13 linhas
378 B
Python
13 linhas
378 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(name='openbci-node-labstreaminglayer',
|
|
version='0.0.1',
|
|
description='Labstreaminglayer with NodeJS',
|
|
url='',
|
|
author='AJ Keller',
|
|
author_email='pushtheworldllc@gmail.com',
|
|
license='MIT',
|
|
packages=find_packages(),
|
|
install_requires=['numpy', 'pyzmq','pylsl'],
|
|
zip_safe=False)
|