forked from Jake-Pullen/verity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.03 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
[project]
name = "verity"
version = "0.1.0"
description = "Verity is the code name for an unnamed project about budgeting and financial planning"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"flask>=3.1.0",
"pytest>=8.3.5",
"python-lsp-ruff>=2.2.2",
"python-lsp-server>=1.12.2",
"pyyaml>=6.0.2",
"requests>=2.32.3",
"ruff>=0.11.9",
]
[tool.unittest.ini_options]
pythonpath = ["."]
testspaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
[tool.pylsp]
plugins.ruff.enabled = true
plugins.ruff.format = ["I"] # Use ruff to organize imports
plugins.ruff.lineLength = 100
plugins.rope_completion.enabled = true
plugins.rope_autoimport.enabled = true
plugins.jedi_completion.enabled = true
plugins.jedi_definition.enabled = true
[tool.ruff]
line-length = 100
target-version = "py313"
fix = true
[tool.ruff.lint]
select = ["E", "F", "I", "W"] # Error, F: PyFlakes, I: isort, W: pycodestyle warnings
ignore = []
# Also organize imports
[tool.ruff.lint.isort]
known-first-party = ["verity"]