-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 971 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
from setuptools import setup, find_packages
# long_description = read('README.rst')
def get_version_string():
version = {}
with open("realtime_decoder/version.py") as f:
exec(f.read(), version)
return version["__version__"]
setup(
name='realtime_decoder',
version=get_version_string(),
license='Apache License',
author='Joshua Chu',
python_requires='>=3.7',
install_requires=['ghostipy>=0.2.0',
'pandas',
'scipy',
'mpi4py',
'Cython',
'trodesnetwork',
'pyqtgraph',
'oyaml'
],
author_email='[email protected]',
description='Realtime clusterless decoding',
packages=find_packages(),
keywords="neuroscience clusterless decoding",
include_package_data=True,
platforms='any',
classifiers=['Programming Language :: Python :: 3'],
)