-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.54 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]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-labbook"
version = "0.19.13"
description = "Notion Internal Integration binding for Codex, Claude Code, and other MCP clients."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Binbin Shen", email = "binbinsh@gmail.com" }
]
keywords = ["codex", "claude-code", "mcp", "notion", "internal-integration"]
dependencies = [
"keyring>=25.6.0,<26",
"mcp>=1.26.0,<2",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
[project.optional-dependencies]
dev = [
"pytest>=8,<9",
]
[project.urls]
Homepage = "https://github.com/binbinsh/agent-labbook"
Repository = "https://github.com/binbinsh/agent-labbook"
Documentation = "https://github.com/binbinsh/agent-labbook#readme"
Changelog = "https://github.com/binbinsh/agent-labbook/releases"
Issues = "https://github.com/binbinsh/agent-labbook/issues"
[project.scripts]
agent-labbook = "labbook.cli:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
labbook = ["py.typed", "templates/*.html", "templates/*.js"]