-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 926 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
36
37
38
[tool.poetry]
name = "gpt-kit"
version = "0.0.7"
description = "OOP wrapper and utils for OpenAI GPT API"
authors = ["Reliable Magician <[email protected]>"]
readme = "README.md"
packages = [{ include = "gpt_kit" }]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=3.8"
openai = "*"
python-dotenv = "*"
pytest = "*"
toml = "*"
tiktoken = "*"
[tool.poetry.group.dev.dependencies]
jupyter = "*"
pandas = "*"
black = "*"
pytest = "*"
transformers = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Home" = "https://github.com/calmmage/gpt_kit"