-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 980 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "karls_chatgpt_helpers"
version = "0.0.3"
authors = [
{name = "Karl", email = "[email protected]"},
{name = "gpt-4"},
]
description = "Helper functions for chatgpt"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE.md"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[project.urls]
"Homepage" = "https://github.com/lehenbauer/karls-chatgpt-helpers"
"Bug Tracker" = "https://github.com/lehenbauer/karls-chatgpt-helpers/issues"
[project.scripts]
chatgpt = "karls_chatgpt_helpers.chatgpt.__main__:main"
gptshell = "karls_chatgpt_helpers.gptshell.__main__:main"