-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (42 loc) · 1.22 KB
/
setup.py
File metadata and controls
48 lines (42 loc) · 1.22 KB
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
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
import sys
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, "hackeeg", "__version__.py")) as f:
exec(f.read(), about)
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
setup(name='hackeeg',
version=about["__version__"],
description='Python client library for HackEEG Arduino Due shield',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/starcat-io/hackeeg-client-python',
author='Starcat LLC',
author_email='adam@starcat.io',
license='Apache 2.0',
packages=['hackeeg'],
install_requires=[
"pyserial",
"bitstring",
"numpy",
"jsonlines",
"msgpack",
"autopep8",
"gnureadline",
"pylsl",
],
scripts=[
"bin/example.py",
"bin/hackeeg_shell",
"bin/hackeeg_shell.py",
"bin/hackeeg_stream",
"bin/hackeeg_stream.py",
"bin/lsl_receive_data.py",
"bin/simple_lsl_receive_and_plot.py",
],
zip_safe=False)