-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (30 loc) · 1 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
[tool.poetry]
name = "text_to_knowledge"
version = "0.1.0"
description = "A set of tools to augment books with summaries, question-answer pairs, keywords and topics"
authors = ["Natalia Gebbert <anthroposoft@mail.ru>"]
maintainers = ["Natalia Gebbert <anthroposoft@mail.ru>"]
license = "GPL3"
readme = "README.md"
homepage = "https://github.com/Anthroposoft/text_to_knowledge"
repository = "https://github.com/Anthroposoft/text_to_knowledge"
keywords = ["augmentation", "LLM"]
include = ["LICENSE", "AUTHORS", "scripts/", "testing/", "prompt_configs/"]
packages = [
{ include = "ttk", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "2.5.3"
openai = "1.8.0"
python-dotenv = "1.0.0"
chromadb = "0.4.22"
[tool.poetry.dev-dependencies]
pytest = "*"
[tool.poetry.scripts]
books_to_json = "ttk.books_to_json:main"
augment_books = "ttk.augment_books:main"
extract_knowledge = "ttk.generate_training_data:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"