-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 918 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
[build-system]
requires = ["setuptools>=40.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gptscript"
version = "0.9.8"
description = "Run gptscripts from Python apps"
readme = "README.md"
authors = [{ name = "Bill Maxwell", email = "bill@acorn.io" }]
license = { file = "LICENSE" }
dependencies = [
"certifi==2026.2.25",
"charset-normalizer==3.4.7",
"httpx==0.28.1",
"idna==3.11",
"requests==2.33.1",
"tqdm==4.67.3",
"urllib3==2.6.3",
"pydantic==2.12.5",
"pywin32==311 ; sys_platform == 'win32'",
"uvicorn==0.44.0",
]
[project.urls]
"Homepage" = "https://github.com/gptscript-ai/py-gptscript/"
"Issues" = "https://github.com/gptscript-ai/py-gptscript/issues"
"Repository" = "https://github.com/gptscript-ai/py-gptscript.git"
[project.scripts]
install_gptscript = "gptscript.install:install"
[tool.wheel]
[tool.setuptools]
packages = ["gptscript"]