-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (39 loc) · 931 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
39
40
41
42
43
44
45
46
[tool.poetry]
name = "chatbot"
version = "0.1.0"
description = "an ai-enabled chatbot"
authors = ["jonmatthis <jonmatthis@gmail.com>"]
license = "AGPLv3"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
tiktoken = "^0.4.0"
python-dotenv = "^1.0.0"
pymongo = "^4.3.3"
py-cord = "^2.4.1"
toml = "^0.10.2"
dnspython = "^2.3.0"
rich = "^13.3.5"
anthropic = "^0.2.9"
langchain = "^0.0.190"
openai = "^0.27.7"
Markdown = "^3.4.3"
pandas = "^2.0.2"
motor = "^3.2.0"
plotly = "^5.15.0"
dash = "^2.11.0"
[tool.poetry.group.dev.dependencies]l
black = "^23.3.0"
mongomock = "^4.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.bumpver]
current_version = "v1.0.0"
version_pattern = "vMAJOR.MINOR.PATCH[-TAG]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"chatbot/__init__.py" = ["{version}"]