-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (68 loc) · 2.09 KB
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
74
75
76
77
78
[tool.poetry]
name = "llm_async"
version = "0.5.1"
description = "Multi-LLM Provider Library"
readme = "README.md"
license = "MIT"
repository = "https://github.com/sonic182/llm-async"
homepage = "https://github.com/sonic182/llm-async"
documentation = "https://github.com/sonic182/llm-async#readme"
keywords = ["llm", "asyncio", "ai", "openai", "anthropic", "claude", "gemini", "google", "openrouter", "streaming", "tool calling", "json schema", "structured outputs", "python", "aiosonic"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
authors = [
"Johanderson Mogollon <johander1822@gmail.com>",
]
packages = [{include = "llm_async"}]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/sonic182/llm-async/issues"
"Source" = "https://github.com/sonic182/llm-async"
"Changelog" = "https://github.com/sonic182/llm-async/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
aiosonic = ">=0.31.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.0"
pytest-asyncio = ">=0.21"
pytest-mock = "*"
pytest-cov = "*"
black = "*"
ruff = "*"
pytest-black = "*"
pytest-ruff = "*"
pytest-sugar = "*"
[tool.poetry.group.docs.dependencies]
sphinx = {version = "^9.1.0", python = ">=3.12,<3.15"}
sphinx-rtd-theme = "^3.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 99
[tool.ruff]
line-length = 99
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[tool.ruff.lint.isort]
known-first-party = ["llm_async"]