forked from timeflux/timeflux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 938 Bytes
/
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
39
40
41
42
43
""" Setup """
import versioneer
from setuptools import setup, find_packages
with open('README.md', 'rb') as f:
DESCRIPTION = f.read().decode('utf-8')
DEPENDENCIES = [
'networkx',
'PyYAML',
'numpy',
'pandas',
'xarray',
'bottleneck',
'scipy',
'pyzmq',
'coloredlogs',
'tables',
'pylsl',
'python-osc',
'python-dotenv',
'jsonschema'
]
setup(
name='timeflux',
packages=find_packages(),
package_data={
'timeflux': ['schema/app.json']
},
entry_points={
'console_scripts': ['timeflux = timeflux.timeflux:main']
},
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Timeflux: acquisition and real-time processing of biosignals.',
long_description=DESCRIPTION,
author='Pierre Clisson',
author_email='[email protected]',
url='https://timeflux.io',
install_requires=DEPENDENCIES
)