generated from timeflux/timeflux_example
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 695 Bytes
/
setup.py
File metadata and controls
26 lines (21 loc) · 695 Bytes
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
""" Setup """
import re
from setuptools import setup, find_packages
with open('README.md', 'rb') as f:
DESCRIPTION = f.read().decode('utf-8')
with open('timeflux_bci/__init__.py') as f:
VERSION = re.search('^__version__\s*=\s*\'(.*)\'', f.read(), re.M).group(1)
DEPENDENCIES = [
'timeflux @ git+https://github.com/timeflux/timeflux'
]
setup(
name='timeflux-bci',
packages=find_packages(),
version=VERSION,
description='Implementation of the main BCI paradigms.',
long_description=DESCRIPTION,
author='Pierre Clisson and Raphaëlle Bertrand-Lalo',
author_email='contact@timeflux.io',
url='https://timeflux.io',
install_requires=DEPENDENCIES
)