-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 991 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 991 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 = "roborambo"
version = "0.0.2"
authors = [
{ name = "Keyton Stanier" },
]
description = "Dead simple framework to turn LLMs into chatbots"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["assistant", "bot", "chatbot", "llm", "minimalist"]
license = { text = "MIT" }
dependencies = [
'nothingburger', # Core LLM framework
'requests', # For web tool HTTP requests
]
[project.optional-dependencies]
# Messaging interfaces (install only what you need)
zulip = ['zulip']
# Tools (install only what you need)
web = ['pandoc'] # For web tool text extraction
# Complete installations
all = ['zulip', 'pandoc']
interfaces = ['zulip']
tools = ['pandoc']
[project.scripts]
roborambo = "roborambo.cli:run"
rambo = "roborambo.cli:run"
rambo-serve = "roborambo.daemon:serve"
rambo-cli = "roborambo.cli:run"
rambo-config = "roborambo.config_tui:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"