-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
138 lines (130 loc) · 3.88 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ragamuffin"
version = "0.4.3"
description = ""
authors = ["Michal Karzynski <[email protected]>"]
readme = "README.md"
packages = [
{ include = "ragamuffin", from = "src" },
]
[tool.poetry.scripts]
muffin = "ragamuffin.cli.muffin:cli"
zotero-chat = "ragamuffin.cli.muffin:zotero_chat"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.7"
ebooklib = "^0.18"
gradio = "^5.4.0"
html2text = "^2024.2.26"
llama-index = "^0.11.20"
llama-index-embeddings-huggingface = "^0.3.1"
llama-index-vector-stores-cassandra = "^0.2.0"
platformdirs = "^4.3.6"
python-dateutil = "^2.9.0.post0"
pyzotero = "^1.5.25"
rich = "^13.9.3"
scikit-learn = "^1.5.2"
sentence-transformers = "^3.2.1"
transformers = {extras = ["torch"], version = "^4.46.1"}
gitpython = "^3.1.43"
[tool.poetry.group.dev.dependencies]
ruff = "^0.7.1"
mypy = "^1.13.0"
types-deprecated = "^1.2.9.20240311"
types-pyyaml = "^6.0.12.20240917"
types-python-dateutil = "^2.9.0.20241003"
types-redis = "^4.6.0.20241004"
types-requests = "^2.32.0.20241016"
types-tabulate = "^0.9.0.20240106"
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
line-length = 120
lint.select = [
"F", # Pyflakes
"E", # Error
"W", # Warning
"C90", # mccabe
"I", # isort
"N", # pep8-naming
"D", # pydocstyle
"UP", # pyupgrade
"YTT", # flake8-2020
"ANN", # flake8-annotations
"S", # flake8-bandit
"BLE", # flake8-blind-except
"B", # flake8-bugbear
"A", # flake8-builtins
"COM", # flake8-commas
"C4", # flake8-comprehensions
"DTZ", # flake8-datetimez
"T10", # flake8-debugger
"DJ", # flake8-django
# "EM", # flake8-errmsg
"EXE", # flake8-executable
"FA", # flake8-future-annotations
"ISC", # flake8-implicit-str-concat
"ICN", # flake8-import-conventions
"LOG", # flake8-logging
"G", # flake8-logging-format
"INP", # flake8-no-pep420
"PIE", # flake8-pie
"T20", # flake8-print
"PYI", # flake8-pyi
"PT", # flake8-pytest-style
"Q", # flake8-quotes
"RSE", # flake8-raise
"RET", # flake8-return
"SLF", # flake8-self
"SLOT", # flake8-slots
"SIM", # flake8-simplify
"TID", # flake8-tidy-imports
"TCH", # flake8-type-checking
"INT", # flake8-gettext
"ARG", # flake8-unused-arguments
"PTH", # flake8-use-pathlib
"TD", # flake8-todos
"FIX", # flake8-fixme
"ERA", # eradicate
"PD", # pandas-vet
"PGH", # pygrep-hooks
"PL", # Pylint
"C", # Convention
"E", # Error
"R", # Refactor
"W", # Warning
"TRY", # tryceratops
"FLY", # flynt
"NPY", # NumPy-specific rules
"AIR", # Airflow
"PERF", # Perflint
"FURB", # refurb
"RUF", # Ruff-specific rules
]
lint.ignore = [
"ANN101", # Missing type annotation for self in method
"ANN204", # Missing return type annotation for special method `__init__`
"ANN401", # typing.Any is disallowed
"ARG002", # Unused method argument
"COM812", # Trailing comma missing
"D100", # Missing docstring in public module
"D101", # Missing docstring in public class
"D104", # Missing docstring in public package
"D107", # Missing docstring in `__init__
"D301", # Use `r"""` if any backslashes in a docstring
"D417", # Missing argument descriptions in the docstring
"G004", # Logging statement uses f-string
"ISC001", # Implicitly concatenated string literals on one line
"TRY003", # Avoid specifying long messages outside the exception class
"TRY400", # Use `logging.exception` instead of `logging.error`
]
target-version = "py310"
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.flake8-annotations]
mypy-init-return = true