forked from openbci-archive/pyOpenBCI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from distutils.core import setup
from setuptools import find_packages
import sys
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'pyOpenBCI',
packages = find_packages(),
version = '0.13',
license='MIT',
description = 'A lib for controlling OpenBCI devices',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'OpenBCI, Inc.',
author_email = 'contact@openbci.com',
url = 'https://github.com/andreaortuno/pyOpenBCI',
download_url = 'https://github.com/andreaortuno/pyOpenBCI/archive/0.13.tar.gz',
keywords = ['device', 'control', 'eeg', 'emg', 'ekg', 'ads1299', 'openbci', 'ganglion', 'cyton', 'wifi'],
install_requires=[
'numpy',
'pyserial',
'bitstring',
'xmltodict',
'requests',
] + ["bluepy >= 1.2"] if sys.platform.startswith("linux") else [],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
],
)