-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 1.08 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
[build-system]
requires = ["setuptools>=68.0,<75.0"]
build-backend = "setuptools.build_meta"
[project]
name = "axl-core"
version = "0.10.0"
description = "AXL Protocol v3: Compressed semantic protocol for agent reasoning. Deterministic English-to-AXL compression."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
dependencies = ["spacy>=3.7"]
authors = [{name = "Diego Carranza", email = "admin@axlprotocol.org"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "ruff>=0.4", "mypy>=1.0"]
[project.scripts]
axl = "axl.cli:main"
[project.urls]
Homepage = "https://axlprotocol.org"
Repository = "https://github.com/axlprotocol/axl-core"
Documentation = "https://lang.axlprotocol.org"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
python_version = "3.10"
strict = false
warn_return_any = true