dissertation/pyproject.toml
Christos Falas b1e7f37e4e
migrate to uv
Allows easier way to change between python versions
2025-01-24 11:28:03 +00:00

33 lines
570 B
TOML

[project]
name = "where-fi"
version = "0.1.0"
description = "Use Wi-Fi Channel State Information to locate human presence"
requires-python = ">=3.11"
dependencies = [
"flask",
"numpy",
"flask-sock",
"pytest",
"matplotlib",
"scipy",
"scipy-stubs",
"typer"
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
extend-select = ["I", "E", "W", "F", "B", "Q", "ANN"]
[tool.ruff.lint.pycodestyle]
max-doc-length = 88
[tool.pyright]
typeCheckingMode = "strict"
reportMissingTypeStubs = "warning"
[tool.pytest.ini_options]
python_files = "*.py"