17 lines
361 B
TOML
17 lines
361 B
TOML
[project]
|
|
name = "hsmm"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"matplotlib>=3.10.8",
|
|
"torch>=2.9.1",
|
|
]
|
|
|
|
[tool.pyright]
|
|
# "venvPath" specifies the folder *containing* the venv directory
|
|
venvPath = "."
|
|
# "venv" specifies the *name* of the venv directory
|
|
venv = ".venv"
|