12 linhas
357 B
Python
12 linhas
357 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(name='openbci-node-python',
|
|
version='0.0.1',
|
|
description='Node to Python the right way',
|
|
url='',
|
|
author='AJ Keller',
|
|
author_email='pushtheworldllc@gmail.com',
|
|
license='MIT',
|
|
packages=find_packages(),
|
|
install_requires=['numpy', 'pyzmq'],
|
|
zip_safe=False) |