-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·54 lines (50 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
from setuptools import setup, find_packages
from dpeeg import __version__
install_requires = [
"numpy>=1.21.5",
"einops>=0.7.0",
"seaborn>=0.12.1",
"pooch>=1.6.0",
"mne>=1.6",
"scipy>=1.11.1",
"scikit-learn>=1.0.2",
"tqdm>=4.64.1",
"torchmetrics>=1.0.0",
"torchinfo>=1.5.0",
"tensorboard",
"pandas>=1.5.2",
"openpyxl",
"pymatreader", # for mne.io.read_raw_eeglab when mne <= 1.8
]
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="dpeeg",
version=__version__,
author="SheepTAO",
author_email="sheeptao@outlook.com",
license="MIT",
description="Deep learning with EEG",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SheepTAO/dpeeg",
packages=find_packages(),
keywords=["eeg", "deep learning", "pytorch"],
python_requires=">=3.10",
install_requires=install_requires,
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here. In particular, ensure
# that you indicate you support Python 3. These classifiers are *not*
# checked by 'pip install'. See instead 'python_requires' below.
"Operating System :: OS Independent",
],
)