-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-mindwave.py
43 lines (38 loc) · 1.22 KB
/
setup-mindwave.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
39
40
41
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
try:
from pypandoc import convert
except ImportError:
import io
def convert(filename, fmt):
with io.open(filename, encoding='utf-8') as fd:
return fd.read()
CLASSIFIERS = [
'Environment :: Console',
'Intended Audience :: Music',
'License :: OSI Approved :: GPLv3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 1',
'Programming Language :: Python :: 2.7',
]
setup(
name='bsmindwave',
version='2.0.0',
author='Cliff Kerr',
author_email='[email protected]',
description='Mindwave Mobile for Brainstaves',
url='http://github.com/thekerrlab/brainstaves',
keywords=['string quartet', 'EEG', 'music', 'MindWave', 'machine learning'],
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
packages=find_packages(),
include_package_data=True,
install_requires=[
'matplotlib==2.2.4',
'scipy==1.2.1', # Note: also need package serial, but should be pre-installed for Python 2
],
)