-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
59 lines (48 loc) · 2.04 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
57
58
59
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='EEG_Tensorflow_models',
version='0.2',
packages=['EEG_Tensorflow_models'],
author='D.G Garcia-Murillo, J.C Caicedo-Acosta',
author_email='[email protected], [email protected]',
maintainer='D.G Garcia-Murillo, J.C Caicedo-Acosta',
maintainer_email='[email protected], [email protected]',
download_url='',
install_requires=['braindecode == 0.7',
'moabb', #@ git+https://github.com/UN-GCPDS/moabb.git',
'tensorflow-addons',
'tensorflow>=2.8',
'tf-keras-vis',
# 'mne==0.23.3',
],
include_package_data=True,
license='Simplified BSD License',
description="",
zip_safe=False,
long_description=README,
long_description_content_type='text/markdown',
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Hardware :: Hardware Drivers',
],
)