-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (38 loc) · 919 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
[tool.poetry]
name = "weather-chat-ai"
version = "0.1.0"
description = ""
authors = ["Matt Florence <matt@mattflo.com>"]
readme = "README.md"
packages = [{ include = "weather_chat_ai" }]
[tool.poetry.dependencies]
python = "^3.10"
langchain = "~0.3.2"
pytz = "^2023.3"
openai = "^1.51.0"
structlog = "^23.2.0"
aiohttp = "^3.8.6"
langchain-together = "^0.2.0"
langchain-mistralai = "^0.2.0"
fireworks-ai = "^0.15.4"
langchain-community = "^0.3.1"
langgraph = "^0.2.34"
langchain-anthropic = "^0.2.3"
streamlit = "^1.39.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
ruff = "~0.0.0"
mypy = "^1.4.1"
pytest = "^7.4.0"
pytest-watch = "^4.2.0"
pytest-notifier = "^1.0.4"
pytest-mock = "^3.11.1"
pytest-asyncio = "^0.21.1"
isort = "^5.12.0"
autoflake = "^2.2.1"
rich = "^13.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = ["focus"]