-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 882 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 882 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
39
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "promptshell"
version = "0.1.1"
authors = [
{name="Kirti Rathi", email="kirtirathi282@gmail.com"},
]
description = "LLM-powered Terminal Assistant"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.31.0",
"openai>=1.12.0",
"anthropic>=0.18.0",
"google-generativeai>=0.3.0",
"python-dotenv>=0.19.0",
"groq",
"pyperclip",
"pyreadline3",
"questionary",
"rich"
]
[project.scripts]
promptshell = "promptshell.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"promptshell" = ["themes.json"]