-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
123 lines (112 loc) · 2.67 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[build-system]
requires = ["setuptools>61", "wheel", "toml", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "aeon-neuro"
version = "0.0.2"
description = "A package for ECG and EEG time series analysis built on the aeon toolkit."
authors = [
{name = "aeon developers", email = "[email protected]"},
]
maintainers = [
{name = "aeon developers", email = "[email protected]"},
]
readme = "README.md"
keywords = [
"data-science",
"machine-learning",
"time-series",
"time-series-analysis",
"neuroscience",
"ECG",
"EEG",
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Development Status :: 5 - Production/Stable",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8,<3.13"
dependencies = [
"aeon<0.12.0",
"mne",
"pyprep",
"umap-learn",
]
[project.optional-dependencies]
all_extras = [
"aeon[all_extras]",
]
dev = [
"aeon[dev]",
]
binder = [
"aeon[binder]",
]
docs = [
"aeon[docs]",
]
[project.urls]
Homepage = "https://www.aeon-toolkit.org"
Repository = "https://github.com/aeon-toolkit/aeon-neuro"
Download = "https://pypi.org/project/aeon-neuro/#files"
[project.license]
file = "LICENSE"
[tool.setuptools]
zip-safe = true
[tool.setuptools.package-data]
aeon_neuro = [
"*.csv",
"*.csv.gz",
"*.arff",
"*.arff.gz",
"*.txt",
"*.ts",
"*.tsv",
]
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
[tool.check-manifest]
ignore = [
# Ignore virtual environments in local builds
"venv/**",
# Ignore the docs symlink and its contents
"docs/examples",
"docs/examples/**",
]
[tool.ruff.lint]
select = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
# ignore certain folders and pytest warnings
testpaths = "aeon_neuro"
addopts = '''
--doctest-modules
--durations 20
--timeout 600
--showlocals
--numprocesses logical
--dist worksteal
--reruns 2
--only-rerun "crashed while running"
'''
filterwarnings = '''
ignore::UserWarning
ignore:numpy.dtype size changed
ignore:numpy.ufunc size changed
'''