-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (38 loc) · 1.78 KB
/
setup.py
File metadata and controls
47 lines (38 loc) · 1.78 KB
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
import setuptools
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"),"r",encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='ExBrainable',
version='0.0.11',
author="Ya-Lin Huang",
author_email="yalinhuang.bt06@nycu.edu.tw",
description="ExBrainable: An Open-Source GUI for CNN-based EEG Decoding and Model Interpretation",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'ExBrainable=ExBrainable.GUI:main'
]
},
url="https://github.com/CECNL/ExBrainable",
install_requires=['mne', 'numpy', 'scipy', 'matplotlib','torchsummary', 'sklearn'],
packages=setuptools.find_packages(), #Use for other package dependencies.
classifiers=[
#'Development Status :: 3 - Alpha', #not sure
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
'Topic :: Software Development :: Build Tools',
"Topic :: Scientific/Engineering :: Artificial Intelligence",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.7',
],
keywords='eeg deep-learning brain-state-decoding',
include_package_data=False, # 沒有其他打包文件
zip_safe=False, #whether the package is installed in compressed mode or regular mode.
)