-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (77 loc) · 1.92 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (77 loc) · 1.92 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "knowledge"
version = "0.1.0"
description = "LLM-powered OKF bundle creation from documentation sources"
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
keywords = [
"knowledge",
"okf",
"knowledge-graph",
"knowledge-engineering",
"llm",
"litellm",
"documentation",
"extraction",
]
authors = [
{ name = "Sachin", email = "sachncs@gmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Markup :: Markdown",
]
dependencies = [
"pydantic>=2.0",
"litellm>=1.91.0",
]
[project.scripts]
knowledge = "knowledge.cli:main"
[project.urls]
Homepage = "https://github.com/sachncs/knowledge"
Documentation = "https://sachncs.github.io/knowledge"
Source = "https://github.com/sachncs/knowledge"
Issues = "https://github.com/sachncs/knowledge/issues"
[project.optional-dependencies]
dev = [
"pytest>=9.1.1",
"pytest-cov>=7.1.0",
"ruff>=0.15.20",
"mypy>=2.1.0",
"vulture>=2.7",
]
bench = [
"pytest-benchmark>=4.0.0",
]
docs = [
"mkdocs>=1.6.1",
"mkdocstrings[python]>=0.25.0",
"mkdocs-material>=9.5.0",
]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.ruff.format]
quote-style = "double"
[tool.mypy]
python_version = "3.12"
strict = true
plugins = ["pydantic.mypy"]
[tool.vulture]
ignore_names = ["cls", "validate_id_is_slug", "side_effect"]
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["tests"]
addopts = "-v --tb=short"