-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 912 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (31 loc) · 912 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "smallclawlm"
version = "0.7.0"
description = "Zero-token AI agent powered by Google NotebookLM"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
authors = [{name = "aissac"}]
keywords = ["notebooklm", "agent", "smolagents", "zero-token"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"smolagents>=0.2",
"notebooklm-py>=0.3",
"httpx>=0.27",
"click>=8.0",
"rich>=13.0",
]
[project.scripts]
smallclaw = "smallclawlm.cli:cli"
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23"]
telegram = ["python-telegram-bot>=21.0"]