-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 755 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 755 Bytes
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
[project]
name = "nlxdf"
version = "0.1.0"
description = "NEUROLIVE XDF data file processing."
readme = "README.md"
authors = [
{name="Jamie Forth", email="j.forth@gold.ac.uk"},
]
license = {text = "AGPL-3.0-or-later"}
requires-python = ">=3.11"
dependencies = [
"eeglabio>=0.0.3",
"gitpython>=3.1.44",
"matplotlib>=3.9.2",
"mne>=1.9.0",
"pandas[performance]>=2.2.3",
"pdxdf",
"scipy>=1.15.2",
]
[project.scripts]
snakeskin-resample = "nlxdf.snakeskin:main"
readings-resample = "nlxdf.readings:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.uv.sources]
pdxdf = { git = "http://github.com/jamieforth/pdxdf.git", rev = "main" }