-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.59 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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "agentjson"
version = "0.1.2"
description = "Probabilistic JSON repair library powered by Rust - fixes broken JSON from LLMs"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT OR Apache-2.0"}
authors = [
{name = "agentjson contributors"}
]
keywords = ["json", "parser", "repair", "llm", "probabilistic", "beam-search", "orjson"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Rust",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: General",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = []
[project.optional-dependencies]
anthropic = ["anthropic"]
[project.urls]
Homepage = "https://github.com/sionic-ai/agentjson"
Repository = "https://github.com/sionic-ai/agentjson"
Documentation = "https://github.com/sionic-ai/agentjson#readme"
[project.scripts]
agentjson = "json_prob_parser.cli:main"
json-prob-parser = "json_prob_parser.cli:main"
[tool.maturin]
# Mixed Rust+Python project
python-source = "src"
module-name = "agentjson.agentjson_rust"
manifest-path = "Cargo.toml"