-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
56 lines (54 loc) · 1.64 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
from pathlib import Path
# Read the contents of your README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='medusa-kernel',
packages=find_packages(),
version='1.3.1',
keywords=['Signal', 'Biosignal', 'EEG', 'BCI'],
url='https://medusabci.com/',
author='Eduardo Santamaría-Vázquez, '
'Víctor Martínez-Cagigal, '
'Diego Marcos-Martínez, '
'Víctor Rodríguez-González, '
'Sergio Pérez-Velasco',
author_email='[email protected]',
install_requires=[
'numpy',
'scipy',
'matplotlib',
'scikit-learn',
'statsmodels',
'bson',
'h5py',
'dill',
'tqdm',
'statsmodels'
],
extras_require={
'TF': [
'tensorflow<2.11',
'tensorflow-probability==0.16'
],
},
python_requires='>=3.8, <3.11',
package_data={
'medusa': ['meeg/*.tsv', 'local_activation/*.dll']
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
description='Advanced biosignal processing toolbox',
long_description=long_description,
long_description_content_type='text/markdown',
license='CC Attribution-NonCommercial-NoDerivs 2.0',
license_files=('LICENSE',),
)