-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (31 loc) · 1011 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='eegunity',
version='0.5.4',
packages=find_packages(include=['eegunity', 'eegunity.*']), # 修改这里
install_requires=[
'mne>=1.5.1',
'numpy>=1.24.0',
'matplotlib>=3.7.3',
'h5py>=3.12.1',
'openai==1.35.1',
'pdfplumber>=0.11.4',
'pandas>=2.1.3',
'scipy>=1.11.2'
],
author='EEGUnity Team',
author_email='chengxuan.qin@outlook.com',
description='An open source Python pacakge for large-scale EEG datasets processing',
long_description=open('readme.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/Baizhige/EEGUnity',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
package_data={
'eegunity': ['resources/*.json'],
},
)