-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
73 lines (64 loc) · 1.36 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "jonbot"
version = "0.1.0"
description = "a friendly machine 🤖❤️✨"
authors = ["jonmatthis <jonmatthis@gmail.com>"]
license = "AGPLv3+"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9, <4"
fastapi = "*"
mkdocs-material = "*"
pydantic = "1.*"
pymongo = "*"
rich = "*"
uvicorn = "*"
tzlocal = "*"
aiohttp = "*"
python-dotenv = "*"
openai = "*"#"^0.28.1"
chromadb = "*"
tiktoken = "*"
py-cord = "*"
PyNaCl = "*"
aiofiles = "*"
motor = "*"
langchain = "*"
pyperclip = "*"
tenacity = "*"
pydub = "*"
toml = "*"
anthropic = "*"
langsmith = "*"
pytest = "*"
pytest-asyncio = "*"
Jinja2 = "*"
pandas = "*"
tabulate = "*"
magic-tree = { git = "https://github.com/jonmatthis/magic_tree.git" }
moviepy = "^1.0.3"
plotly = "^5.18.0"
scipy = "^1.11.4"
scikit-learn = "^1.3.2"
matplotlib = "^3.8.2"
plotly-express = "^0.4.1"
natsort = "^8.4.0"
opencv-contrib-python = "^4.8.1.78"
dash = "^2.14.2"
[tool.poetry.group.dev.dependencies]
bumpver = "^2023.1125"
black = "^23.7.0"
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
dynamic = ["version"]
[tool.bumpver]
current_version = "v1.4.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]
"jonbot/__init__.py" = ["{version}"]