forked from CMSgov/beneficiary-fhir-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (74 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (74 loc) · 1.38 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
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
80
81
[project]
name = "bfd-pipeline-idr"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"cryptography>=45.0.6",
"psycopg[binary,pool]>=3.2.13",
"pydantic>=2.12.4",
"snowflake-connector-python>=4.1.0",
"sf-hamilton>=1.89.0",
"python-dateutil>=2.9.0",
"usaddress>=0.5.16",
"unidecode>=1.4.0",
]
[dependency-groups]
dev = [
"ruff>=0.14.6",
"uv>=0.9.11",
"pytest>=9.0.1",
"testcontainers>=4.13.3",
"pyright>=1.1.407",
]
# [[tool.mypy.overrides]]
# module = ["testcontainers.*"]
# follow_untyped_imports = true
[tool.ruff]
# Set the maximum line length to 100.
line-length = 100
[tool.ruff.lint]
select = [
"D", # pydocstyle
"E501",
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
"ANN",
"LOG",
"G",
"PT",
"RSE",
"PIE",
"RET",
"SLF",
"ARG",
"PTH",
"PLE",
"PLW",
"PERF",
"FURB",
"RUF",
]
# Don't require docstrings
ignore = ["D100", "D101", "D102", "D103", "D104", "D105", "D107"]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.pyright]
typeCheckingMode = "strict"
venvPath = "."
venv = ".venv"