-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (41 loc) · 975 Bytes
/
pyproject.toml
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
[build-system]
requires = ["flit_core>=3.4",
"oldest-supported-numpy"]
build-backend = "flit_core.buildapi"
[project]
name = "seizure_data_processing"
version = "0.0.2"
authors = [
{ name="sderooij"},
]
description = "A package to process seizure EEG data."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"pyEDFlib>=0.1.23",
"scikit_learn>=1.1.2",
"pandas>=1.3.4",
"numpy>=1.20.0",
"scipy>=1.7.1",
"mne>=0.24.1",
"primefac>=2.0.12",
"PyWavelets>=1.1.1",
"antropy>=0.1.6",
"pyarrow>=5.0.0",
"jax[cpu]>=0.2.21",
]
#[project.optional-dependencies]
#test = [
# "pytest >=6.0",
#]
#mpl = [
# "matplotlib >=2.0",
#]
#classifiers = [
# "Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
# "Operating System :: OS Independent",
#]
#[project.urls]
#"Homepage" = "https://github.com/pypa/sampleproject"
#"Bug Tracker" = "https://github.com/pypa/sampleproject/issues"