-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (49 loc) · 1.66 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
[build-system]
# PEP 639 (SPDX license expression + license-files) needs setuptools >= 77.
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "fable-session"
version = "0.3.0b1"
description = "Bounded, pinned Claude Code sessions: launcher, post-run model-purity audit, and exact-lane watchdog. Unofficial; not affiliated with Anthropic."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
# Runtime dependencies stay empty by contract: Python 3.12 stdlib only.
dependencies = []
keywords = [
"claude",
"claude-code",
"tmux",
"session",
"audit",
"agent",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
# Honest platform claim: Linux is the tested real-host combination.
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/getaskclaw/fable-session"
Repository = "https://github.com/getaskclaw/fable-session"
Issues = "https://github.com/getaskclaw/fable-session/issues"
[project.scripts]
# Exactly one console command. The deprecated 0.1 compatibility aliases
# were retained for exactly one migration release (0.2.x) and are removed
# here. Never add an `fs` alias.
fable-session = "fable_session.cli:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
fable_session = ["templates/*.md"]