-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
56 lines (45 loc) · 1.13 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
[tool.poetry]
name = "archer-slackbot"
version = "0.2.0"
description = "Archer is a LLM Agent that lives in your slack workspace"
packages = [
{include="archer", from="."}
]
authors = ["Arcade AI <[email protected]>"]
[build-system]
requires = ["poetry-core>=1.0.0,<2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
slack-bolt = "~1.21.0"
python-dotenv = "^1.0.1"
langchain-openai = "~0.3.7"
langchain-arcade = "1.1.*"
fastapi = {extras = ["standard"], version = "^0.110.3"}
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.2"
pytest-cov = "^4.0.0"
mypy = "^1.5.1"
pre-commit = "^3.4.0"
tox = "^4.11.1"
pytest-asyncio = "^0.23.7"
ruff = "^0.6.0"
modal = "0.73.*"
[tool.mypy]
files = ["archer"]
python_version = "3.10"
disallow_untyped_defs = "True"
disallow_any_unimported = "True"
no_implicit_optional = "True"
check_untyped_defs = "True"
warn_return_any = "True"
warn_unused_ignores = "True"
show_error_codes = "True"
ignore_missing_imports = "True"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["archer"]
[tool.coverage.report]
skip_empty = true