-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gptcmd"
authors = [
{ name="Bill Dengler", email="[email protected]" },
]
description = "Command line GPT conversation and experimentation environment"
readme = "README.md"
requires-python = ">=3.8.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
]
dependencies = [
"openai>=1.54.0, < 2.0.0",
"tomli>=1.1.0, < 2.0.0 ; python_version < '3.11'",
"backports.strenum>=1.3.1, < 2.0.0 ; python_version < '3.11'",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/codeofdusk/gptcmd"
"Bug Tracker" = "https://github.com/codeofdusk/gptcmd/issues"
[project.scripts]
gptcmd = "gptcmd.cli:main"
[tool.setuptools.package-data]
"gptcmd" = ["config_sample.toml"]
[tool.setuptools.dynamic]
version = {attr = "gptcmd.cli.__version__"}
[tool.black]
line-length = 79
target-version = ['py38']
preview=true