-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (31 loc) · 911 Bytes
/
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
[ build-system ]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[ project ]
name = "muxmait"
version = "0.1.5"
description = "AI-powered shell assistant that uses tmux"
readme = "README.md"
authors = [{ name = "Elijah Knaperek", email = "[email protected]" }]
license = { text = "GPLv3" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Environment :: Console",
]
keywords = ["ai", "shell", "tmux", "assistant", "terminal", "muxmait", "mait"]
dependencies = [
"beautifulsoup4>=4.12.0",
"requests>=2.31.0",
"openai>=1.0.0",
]
requires-python = ">=3.8"
[project.optional-dependencies]
litellm = [
"litellm>=1.0.0",
]
[ project.urls ]
Homepage = "https://github.com/elijahknaperek/muxmait"
[ project.scripts ]
mait = "mait:main"