-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (37 loc) · 1009 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
[tool.poetry]
name = "ai-powered"
version = "0.3.1"
description = "The easiest way to develop AI-Powered applications"
authors = [ "Luo Chen <[email protected]>" ]
repository = "https://github.com/luochen1990/ai_powered"
readme = "README.md"
include = ["src"]
[tool.poetry.dependencies]
python = ">=3.10,<4"
openai = "^1.35.14"
msgspec = "^0.18.6"
easy-sync = "^0.2.2"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
pytest-asyncio = "^0.23.8"
pytest-cov = "^5.0.0"
pytest-xdist = "^3.6.1"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.373"
funix = "^0.5.8"
[tool.pytest.ini_options]
testpaths = ["test", "test/examples/**/*.py"]
addopts = "-n auto"
[tool.pyright]
strict = ["all"]
[tool.yapf]
based_on_style = "google"
column_limit=150
dedent_closing_brackets=true
join_multiple_lines=true
split_before_first_argument=true
indent_blank_lines=false
spaces_around_default_or_named_assign=true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"