Spaces:
Sleeping
Sleeping
| [project] | |
| name = "prepmate-webapp" | |
| version = "0.1.0" | |
| description = "Profile and Contact Management UI for PrepMate" | |
| requires-python = ">=3.11" | |
| [tool.ruff] | |
| target-version = "py311" | |
| line-length = 100 | |
| [tool.ruff.lint] | |
| select = [ | |
| "E", # pycodestyle errors | |
| "W", # pycodestyle warnings | |
| "F", # pyflakes | |
| "I", # isort | |
| "B", # flake8-bugbear | |
| "C4", # flake8-comprehensions | |
| ] | |
| ignore = [ | |
| "E501", # line too long (handled by formatter) | |
| ] | |
| [tool.ruff.format] | |
| quote-style = "double" | |
| indent-style = "space" | |
| [tool.pytest.ini_options] | |
| testpaths = ["tests"] | |
| python_files = ["test_*.py"] | |
| python_classes = ["Test*"] | |
| python_functions = ["test_*"] | |
| addopts = "-v --strict-markers" | |