-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 905 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (31 loc) · 905 Bytes
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
[project]
name = "emrg"
version = "0.2.94"
description = "EMRG — a self-evolving AI agent architecture"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "argszero" }]
dependencies = [
"rich>=13.0.0",
"httpx>=0.27.0",
"pyyaml>=6.0",
"jinja2>=3.0",
"websockets>=17.0.1",
]
[project.scripts]
emrg = "emrg.__main__:main"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build]
include = ["emrg/**/*.py", "emrg/**/*.md", "emrg/**/*.j2", "LICENSE", "README.md", "README.cn.md"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.1.1",
]
[tool.pytest.ini_options]
markers = [
"allow_real_stop: opt out of the conftest stop_all hermeticity guard for the listed stop function(s) — use only when the test has already isolated the function's internal kill machinery",
]