-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (82 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (82 loc) · 2.09 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
[project]
name = "pyrlm-runtime"
version = "1.0.3"
description = "Minimal runtime for Recursive Language Models (RLMs)."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "Antonio Pena Batista", email = "apenab1995@gmail.com" }]
keywords = [
"llm",
"recursive-language-models",
"rlm",
"ai",
"nlp",
"large-language-models",
"context-window",
"reasoning",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27",
"python-dotenv>=1.0",
"pydantic-monty>=0.0.4,<0.0.8",
"google-cloud-aiplatform>=1.60.0",
]
[project.optional-dependencies]
rich = ["rich>=13.7"]
examples = ["datasets>=4.7.0", "rank-bm25>=0.2.2", "tiktoken>=0.7"]
elasticsearch = ["elasticsearch[async]>=8.0"]
tui = [
"textual>=8.2.3",
"rich>=13.7",
]
[project.urls]
Homepage = "https://github.com/apenab/rlm-runtime"
Repository = "https://github.com/apenab/rlm-runtime"
Issues = "https://github.com/apenab/rlm-runtime/issues"
[dependency-groups]
dev = [
"commitizen>=4.13.7",
"datasets>=4.7.0",
"pytest>=8.0",
"rich>=13.7",
"ruff>=0.6.0",
"tiktoken>=0.7",
"ty>=0.0.0",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-q"
[tool.commitizen]
name = "cz_conventional_commits"
version = "1.0.3"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
"src/pyrlm_runtime/__init__.py:__version__",
]
update_changelog_on_bump = true
[tool.hatch.build.targets.wheel]
packages = ["src/pyrlm_runtime"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"