-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (103 loc) · 2.81 KB
/
Copy pathpyproject.toml
File metadata and controls
114 lines (103 loc) · 2.81 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
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
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rag-cli"
version = "2.0.0"
description = "Local RAG system with embedded Multi-Agent Framework for Claude Code plugin"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "DiaTech", email = "support@rag-cli.dev"}
]
keywords = [
"rag",
"retrieval",
"augmented-generation",
"vector-search",
"semantic-search",
"multi-agent",
"orchestration",
"documentation",
"knowledge-base",
"claude-code",
"plugin"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/ItMeDiaTech/rag-cli"
Repository = "https://github.com/ItMeDiaTech/rag-cli"
"Bug Reports" = "https://github.com/ItMeDiaTech/rag-cli/issues"
Documentation = "https://github.com/ItMeDiaTech/rag-cli/wiki"
[project.scripts]
rag-index = "rag_cli.cli.index:main"
rag-retrieve = "rag_cli.cli.retrieve:main"
rag-monitor = "rag_cli_plugin.services.__main__:main"
rag-cli-install = "rag_cli_plugin.lifecycle.installer:main"
rag-cli-update = "rag_cli_plugin.lifecycle.updater:main"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["rag_cli*"]
exclude = ["*.tests", "*.tests.*", "tests.*", "tests", "__pycache__", "*.pyc"]
[tool.setuptools.package-data]
"*" = [
".claude-plugin/**/*",
"config/**/*",
"scripts/**/*"
]
[tool.isort]
profile = "black"
multi_line_mode = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
[tool.black]
line-length = 120
target-version = ['py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
addopts = "--verbose --strict-markers"
[tool.pylint.messages_control]
max-line-length = 120