forked from jgvhabets/ReTap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (19 loc) · 831 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(
name='ReTap',
version='0.0.0',
author='Jeroen Habets',
author_email='[email protected]',
description='ReTap is an open-source tool to generate automated UPDRS finger-tapping predictions based on index-finger accelerometer data',
long_description='',
url='https://github.com/jgvhabets/ReTap',
packages=find_packages(where="src"),
install_requires=['jupyter', 'pandas', 'numpy', 'scipy', 'scikit-learn', 'matplotlib', 'h5py', 'mne', 'openpyxl', 'pengouin'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Neurological, Movement Disorders, Researchers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
],
python_requires = "==3.9.13",
)