-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
53 lines (48 loc) · 1.37 KB
/
pyproject.toml
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
[tool.poetry]
name = "tool-use-ai"
version = "1.1.10"
description = "Tools to simplify life with AI"
authors = ["Ty Fiero <[email protected]>", "Mike Bird <[email protected]>"]
readme = "README.md"
packages = [{include = "tool_use", from = "src"}]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.11"
feedparser = "^6.0.11"
rich = "^13.9.2"
prompt-toolkit = "^3.0.48"
inquirer = "^3.4.0"
anthropic = "^0.21.0"
ollama = "^0.1.6"
groq = "0.11.0"
tomli = "^2.0.2"
openai = "^1.54.4"
tomli-w = "^1.1.0"
sounddevice = "^0.5.1"
soundfile = "^0.12.1"
google-auth-oauthlib = "^1.0.0"
pynput = "^1.7.7"
pydantic = "^2.9.2"
google-api-python-client = "^2.149.0"
pytz = "^2024.2"
tzlocal = "^5.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Homepage" = "https://github.com/ToolUse/tool-use-ai"
"Bug Tracker" = "https://github.com/ToolUse/tool-use-ai/issues"
"Documentation" = "https://github.com/ToolUse/tool-use-ai#readme"
[tool.poetry.scripts]
ai = "tool_use.cli:main"
tooluse = "tool_use.tooluse.cli:main"
[tool.semantic_release]
version_variable = ["pyproject.toml:tool.poetry.version"]
branch = "main"
commit_message = "chore: bump version to {version}"
build_command = "poetry build"