-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 840 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 840 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
39
40
41
42
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "comptext"
version = "0.1.0"
description = "Local dry-run developer preview for CompText AI orchestration."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
keywords = [
"comptext",
"ai-orchestration",
"developer-tools",
"dry-run",
"evidence-chain",
"local-first"
]
dependencies = [
"textual>=0.50.0"
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-asyncio>=0.24",
"tomli>=2.0; python_version < '3.11'",
"build>=1.2"
]
[project.scripts]
comptext = "modules.cli.cli_entrypoint:main"
[tool.setuptools.packages.find]
include = ["modules*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"asyncio: marks tests as asyncio tests"
]