-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
76 lines (68 loc) · 1.76 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
[tool.black]
line-length = 100
target-version = ['py39', 'py310', 'py311']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| _build
| buck-out
| build
| dist
| backend/models_cache
| models_cache
| data
)/
'''
[tool.isort]
profile = "black"
line_length = 100
skip_gitignore = true
extend_skip = ["backend/models_cache", "models_cache", "data"]
known_first_party = ["config", "services", "managers", "interfaces", "routes"]
[tool.pylint.messages_control]
disable = [
"C0111", # missing-docstring
"C0103", # invalid-name
"R0913", # too-many-arguments
"R0914", # too-many-locals
"W0212", # protected-access
]
[tool.pylint.format]
max-line-length = 127
[tool.pylint.basic]
good-names = ["i", "j", "k", "ex", "Run", "_", "id", "pk"]
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ragenius"
version = "1.0.0"
description = "Advanced Knowledge Retrieval Platform with RAG"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "RAGenius Team", email = "asherlii@outlook.com"}
]
keywords = ["rag", "retrieval", "llm", "qa", "knowledge-base"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/l1anch1/DeepSeek-RAG"
Repository = "https://github.com/l1anch1/DeepSeek-RAG"
Issues = "https://github.com/l1anch1/DeepSeek-RAG/issues"