-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye.dev-dependencies]
dev-dependencies = [
"pytest>=8.2.2",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.hatch.build.targets.wheel]
packages = ["src/epilepsy2bids"]
[project]
name = "epilepsy2bids"
version = "0.0.7"
authors = [
{ name="Jonathan Dan", email="jonathan.dan@epfl.ch" },
{ name="PEDESITE" }
]
description = "Python library for converting EEG datasets of people with epilepsy to BIDS compatible datasets."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24.3",
"pandas>=2.1.3",
"pyarrow>=16.1.0",
"pyedflib>=0.1.36",
"resampy>=0.4.2",
"termcolor>=2.4.0",
"timescoring>=v0.0.5"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/esl-epfl/epilepsy2bids"
"Bug Tracker" = "https://github.com/esl-epfl/epilepsy2bids/issues"