-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
117 lines (105 loc) · 2.77 KB
/
Copy pathpyproject.toml
File metadata and controls
117 lines (105 loc) · 2.77 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
115
116
117
[build-system]
requires = ["hatchling>=1.26"]
build-backend = "hatchling.build"
[project]
name = "steadlith"
version = "1.0.1"
description = "Steadlith reuses unchanged RAG chunks with content-defined identities, cache-aware planning, and transactional indexing."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Satwik Sai Prakash Sahoo" },
]
keywords = [
"rag",
"embeddings",
"chunking",
"vector-database",
"incremental",
"content-defined-chunking",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"rich>=13.7",
"tomli>=2.0.1; python_version < '3.11'",
]
[project.optional-dependencies]
openai = [
"openai>=1.0",
]
sentence-transformers = [
"sentence-transformers>=3.0",
]
dev = [
"build>=1.2",
"mypy>=1.10",
"pytest>=8.0",
"pytest-cov>=7.0",
"ruff>=0.6",
]
[project.scripts]
steadlith = "steadlith.cli:main"
[project.urls]
Repository = "https://github.com/satwiksps/steadlith"
Issues = "https://github.com/satwiksps/steadlith/issues"
Documentation = "https://steadlith.readthedocs.io/"
Changelog = "https://github.com/satwiksps/steadlith/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests",
"/docs",
"/examples",
"/assets/steadlith-banner.svg",
"/README.md",
"/LICENSE",
"/CONTRIBUTING.md",
"/CODE_OF_CONDUCT.md",
"/SECURITY.md",
"/CHANGELOG.md",
"/CITATION.cff",
"/pyproject.toml",
]
[tool.hatch.build.targets.wheel]
packages = ["src/steadlith"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra --strict-config --strict-markers"
testpaths = ["tests"]
markers = [
"benchmark: reproducible churn or retrieval measurements",
"integration: tests requiring an external provider or backend",
"slow: tests excluded from short local feedback loops",
]
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP", "B"]
[tool.ruff.lint.isort]
known-first-party = ["steadlith"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_unused_configs = true
mypy_path = "src"
explicit_package_bases = true
[[tool.mypy.overrides]]
module = ["openai", "sentence_transformers", "tomli", "tomllib"]
ignore_missing_imports = true