-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.1 KB
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
42
43
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gptcmd"
authors = [
{ name="Bill Dengler", email="codeofdusk@gmail.com" },
]
description = "Command line GPT conversation and experimentation environment"
readme = "README.md"
requires-python = ">=3.8.6"
license = "MPL-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"openai>=1.54.0, < 3.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'",
"importlib_metadata>=3.6 ; python_version < '3.10'",
"packaging>=23.0",
]
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.__version__"}
[tool.black]
line-length = 79
target-version = ['py38']
preview=true