forked from IoBT-VISTEC/MIN2Net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (47 loc) · 1.51 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="min2net",
version="1.0.0",
author="INTERFACES",
author_email="[email protected]",
description="MIN2Net: End-to-End Multi-Task Learning for Subject-Independent Motor Imagery EEG Classification",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://MIN2Net.github.io",
download_url="https://github.com/IoBT-VISTEC/MIN2Net/releases",
project_urls={
"Bug Tracker": "https://github.com/IoBT-VISTEC/MIN2Net/issues",
"Documentation": "https://MIN2Net.github.io",
"Source Code": "https://github.com/IoBT-VISTEC/MIN2Net",
},
license="Apache Software License",
keywords=[
"Brain-computer Interfaces"
"BCI",
"Motor Imagery",
"MI",
"Multi-task Learning",
"Deep Metric Learning",
"DML",
"Autoencoder",
"AE",
"EEG Classifier"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires = [
"setuptools>=42",
"wheel>=0.37.0",
# "tensorflow-gpu==2.2.0", not support tensorflow-gpu via pip
"tensorflow-addons==0.9.1",
"scikit-learn>=0.24.1",
"wget>=3.2"
],
packages=setuptools.find_packages(),
python_requires='>=3.6',
)