-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (50 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
60 lines (50 loc) · 1.04 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rlm-cli"
version = "0.0.0"
description = "RLM CLI"
requires-python = ">=3.11"
dependencies = [
"pathspec",
"markitdown",
"pyyaml",
"rlm @ git+https://github.com/rawwerks/rlm.git",
"typer",
]
[project.optional-dependencies]
dev = [
"mypy",
"pytest",
"ruff",
"types-PyYAML",
]
rich = ["rich"]
search = ["tantivy>=0.22.0", "python-ripgrep>=0.0.8"]
exa = ["exa-py>=1.0"]
[project.scripts]
rlm = "rlm_cli.cli:app"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.mypy]
python_version = "3.11"
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
ignore_missing_imports = true
strict_optional = true
[[tool.mypy.overrides]]
module = ["rlm", "rlm.*"]
follow_imports = "skip"
[tool.pytest.ini_options]
markers = [
"integration: integration tests",
]