minyma/pyproject.toml

27 lines
481 B
TOML
Raw Normal View History

2023-10-15 22:02:44 +00:00
[project]
name = "minyma"
version = "0.0.1"
description = "AI Chat Bot with Vector DB Context"
authors = [
{ name = "Evan Reichard", email = "evan@reichard.io" },
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"Flask>=3.0",
"openai==0.28.1",
"openai[datalib]==0.28.1",
"tqdm",
"chromadb",
"sqlite-utils",
2023-11-06 02:01:43 +00:00
"click",
"beautifulsoup4"
2023-10-15 22:02:44 +00:00
]
[project.scripts]
minyma = "minyma:cli"
[tool.setuptools.packages]
find = {}