-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
79 lines (67 loc) · 1.97 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
[project]
name = "heart-sounds-segmentation"
version = "1.0.0"
description = "Heart sounds segmentation based on LSTM neural network and Fourier Synchrosqueezed Transform."
authors = [{ name = "Alvaro J. Gaona", email = "alvgaona@gmail.com" }]
maintainers = [{ name = "Alvaro J. Gaona", email = "alvgaona@gmail.com" }]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9,<3.12"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[project.urls]
Home = "https://github.com/alvgaona/heart-sounds-segmentation"
[tool.pixi.project]
channels = ["nvidia", "conda-forge", "pytorch"]
platforms = ["linux-64", "win-64"]
[tool.pixi.project.pypi-options]
extra-index-urls = [
"https://gitlab.com/api/v4/projects/62793076/packages/pypi/simple",
]
[tool.pixi.dependencies]
python = { version = ">=3.9,<3.12", channel = "conda-forge" }
scipy = "1.11.*"
pandas = "2.0.*"
numba = "0.57.*"
rich = ">=13.9.3,<14"
pytest = "*"
ruff = "*"
matplotlib = ">=3.9.2,<4"
pyright = ">=1.1.384,<2"
pytorch = { version = ">=2.4.1,<3", channel = "pytorch" }
torchvision = { version = ">=0.19.1,<0.20", channel = "pytorch" }
torchaudio = { version = ">=2.4.1,<3", channel = "pytorch" }
pytorch-cuda = "12.1.*"
lightning = { version = ">=2.4.0,<3" }
seaborn = ">=0.13.2,<0.14"
scikit-learn = ">=1.5.2,<2"
[tool.pixi.pypi-dependencies]
sox = "*"
soundfile = "*"
fsst = ">=0.1.1,<0.2"
[tool.pixi.environments]
default = { features = [], solve-group = "default" }
[tool.pytest.ini_options]
pythonpath = ["."]
log_cli = true
log_cli_level = "DEBUG"
[tool.ruff]
target-version = "py311"
line-length = 120
exclude = [".pixi"]
[tool.ruff.lint]
select = ["E", "F", "B", "SIM", "I"]
ignore = ["E741"]
[tool.ruff.lint.isort]
case-sensitive = true
lines-after-imports = 2
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.pyright]
venvPath = ".pixi/envs"
venv = "default"