-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (82 loc) · 2.49 KB
/
pyproject.toml
File metadata and controls
92 lines (82 loc) · 2.49 KB
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
[project]
name = "MyoVerse"
version = "2.0.0"
description = "AI toolkit for myocontrol research, processing EMG signals, kinematics, and kinetics using PyTorch."
readme = "README.md"
authors = [
{ name = "Raul C. Sîmpetru", email = "raul.simpetru@fau.de" },
{ name = "Vlad Cnejevici", email = "vlad.cnejevici@fau.de" },
]
requires-python = ">=3.12"
dependencies = [
"lightning>=2.5.0",
"mplcursors>=0.6",
"networkx>=3.4.2",
"numba>=0.61.0",
"pywavelets>=1.8.0",
"rich>=13.9.4",
"scipy>=1.15.2",
"statsmodels>=0.14.4",
"toml>=0.10.2",
"tqdm>=4.67.1",
"xarray>=2024.10.0", # Named dimensions for multi-modal data
"xrscipy>=0.4.0", # scipy functions for xarray (dimension-aware signal processing)
"zarr>=3.0.0", # Zarr 3 with new API (ZarrIO abstraction handles compatibility)
"zarrs>=0.2.0", # Rust-based codec pipeline for faster I/O
"torch>=2.6.0",
"torchvision>=0.21.0",
"torchaudio>=2.6.0", # IIR biquad filters for temporal transforms
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cpu", marker = "sys_platform == 'darwin'" },
{ index = "pytorch-cu124", marker = "sys_platform != 'darwin'" },
]
torchvision = [
{ index = "pytorch-cpu", marker = "sys_platform == 'darwin'" },
{ index = "pytorch-cu124", marker = "sys_platform != 'darwin'" },
]
torchaudio = [
{ index = "pytorch-cpu", marker = "sys_platform == 'darwin'" },
{ index = "pytorch-cu124", marker = "sys_platform != 'darwin'" },
]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu124"
url = "https://download.pytorch.org/whl/cu124"
explicit = true
[project.urls]
"PyPI" = "https://pypi.org/project/MyoVerse/"
"PyTorch CUDA Wheels" = "https://download.pytorch.org/whl/cu124/"
"GitHub" = "https://github.com/NsquaredLab/MyoVerse"
"Documentation" = "https://nsquaredlab.github.io/MyoVerse/"
[dependency-groups]
docs = [
"bayesian-torch>=0.5.0",
"furo>=2024.8.6",
"memory-profiler>=0.61.0",
"pydata-sphinx-theme>=0.16.1",
"pyqt6>=6.8.1",
"rinohtype>=0.5.5",
"sphinx>=8.1.3",
"sphinx-gallery>=0.19.0",
]
dev = [
"ipywidgets>=8.1.8",
"mlflow>=3.0.0",
"pytest>=8.3.4",
"pytest-loop>=1.0.13",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["myoverse*"]
[tool.setuptools.package-data]
myoverse = ["py.typed"]