generated from streamlit/chatbot-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
171 lines (163 loc) · 4.82 KB
/
pyproject.toml
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
[project]
name = "EU-Chatbot"
version = "0.1.0"
description = "Unser toller Chatbot!"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"llmling-agent[default]>=0.99.7",
"streamlit>=1.42.0",
"markitdown",
"streamlit-pydantic",
"crewai_tools",
"jira",
]
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"pytest-xdist",
"pyreadline3",
"devtools",
# Only add below (Copier)
"pytest-asyncio>=0.24.0",
]
lint = [
"ruff",
"mypy[faster-cache]; python_version < '3.14'",
"mypy; python_version >= '3.14'",
# Only add below (Copier)
]
[tool.mypy]
python_version = "3.12"
disable_error_code = ["misc", "import"]
pretty = true
check_untyped_defs = true
exclude = ['venv/', '.venv/', 'tests/']
plugins = ["pydantic.mypy"]
[tool.ruff]
line-length = 90
extend-exclude = ['docs']
target-version = "py312"
[tool.ruff.lint]
select = [
"A", # Flake8-builtins
# "ANN", # Flake8-Annotations
# "ASYNC", # Flake8-Async
# "ARG", # # Flake8-Unused-Arguments
"B", # flake8-bugbear
"BLE", # Flake8-blind-except
"C",
"C4", # flake8-comprehensions
# "C90", # MCCabe
"COM", # Flake8-commas
# "CPY", # Copyright-related rules
"D", # PyDocStyle
# "DTZ", # Flake8- Datetimez
"E", # PyCodeStyle Error
"EM", # flake8-errmsg
# "ERA", # Eradicate
"EXE", # flake8-executable
"F", # PyFlakes
"FA", # flake8-future-annotations
# "FBT", # flake8-boolean-trap
# "FIX", # flake8-fixme
"FLY", # flynt
"G", # flake8-logging-format
"I", # ISort
"ICN", # Flake8-import-conventions
"INP", # flake8-no-pep420
"INT", # flake8-gettext
"ISC", # flake8-implicit-str-concat
"N", # pep8-naming
# "NPY", # numpy-specific rules
# "PD", # pandas-vet
"PERF", # perflint
# "PGH", # pygrep-hooks
"PIE", # flake8-pie
"PLE", # PyLint Error
"PLC", # PyLint convention
# "PLW", # PyLint Warning
"PLR", # PyLint refactor
"PT", # flake8-pytest-style
"PTH", # flake8-use-pathlib
"PYI", # flake8-pyi
"Q", # flake8-quotes
"RET", # flake8-return
"RSE", # flake8-raise
"RUF", # ruff-specific rules
# "S", # flake8-bandit
"SIM", # flake8-simplify
"SLF", # flake8-self
"SLOT", # flake8-slots
# "T",
# "TD", # flake8-todos
"T10", # flake8-debugger
# "T20", # flake8-print
"TC", # flake8-type-checking
"TID", # flake8-tidy-imports
"TRY", # tryceratops
"UP", # PyUpgrade
"W", # PyCodeStyle warning
"YTT", # flake8-2020
]
ignore = [
"C408", # Unnecessary {obj_type} call (rewrite as a literal)
"B905", # zip() without an explicit strict= parameter
"C901", # {name} is too complex ({complexity} > {max_complexity})
"COM812",
# "CPY001", # Missing copyright notice at top of file
"D100", # Missing docstring in public module
"D102", # Missing docstring in public method
"D103", # Missing docstring in public function
"D104", # Missing docstring in public package
"D105", # Missing docstring in magic method
"D107", # Missing docstring in __init__
"D203", # 1 blank line required before class docstring
"D204", # 1 blank line required after class docstring
"D213", # Multi-line docstring summary should start at the second line
"D400", # First line should end with a period
"D401", # First line of docstring should be in imperative mood: "{first_line}"
"D408", # Section underline should be in the line following the section's name ("{name}")
"D413", # Missing blank line after last section ("{name}")
"ISC001",
"PLR0912", # Too many branches
"PLR0913", # Too many arguments to function call
"PLR0915", # Too many statements
# "PLR2004", # Magic values instead of named consts
"SLF001", # Private member accessed
"TRY003", # Avoid specifying long messages outside the exception class
]
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
[tool.ruff.format]
# Enable preview style formatting.
preview = true
[tool.ruff.lint.isort]
lines-after-imports = 2
# lines-between-types = 1
# atomic = true
force-sort-within-sections = true
combine-as-imports = true
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "I001"]
"scripts/*" = ["INP001"]
[tool.pyright]
venvPath = "."
venv = ".venv"
pythonVersion = "3.12"
pythonPlatform = "All"
typeCheckingMode = "basic"
deprecateTypingAliases = true
reportMissingTypeStubs = false
reportUnusedCallResult = false
reportUnknownVariableType = false
reportAny = false
reportImplicitOverride = false
reportUnusedFunction = false
reportImplicitStringConcatenation = false
reportIgnoreCommentWithoutRule = false
reportUnannotatedClassAttribute = false
reportSelfClsParameterName = false
reportPrivateImportUsage = false
reportUnusedExpression = false