forked from gptscript-ai/py-gptscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 892 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
35
[build-system]
requires = ["setuptools>=40.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gptscript"
version = "0.9.5"
description = "Run gptscripts from Python apps"
readme = "README.md"
authors = [{ name = "Bill Maxwell", email = "[email protected]" }]
license = { file = "LICENSE" }
dependencies = [
"certifi==2024.2.2",
"charset-normalizer==3.3.2",
"httpx==0.27.0",
"idna==3.6",
"requests==2.31.0",
"tqdm==4.66.2",
"urllib3==2.2.1",
"pydantic==2.9.2",
"pywin32==306 ; sys_platform == 'win32'",
]
[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"]