-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (54 loc) · 1.66 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
[tool.poetry]
name = "openiziai"
version = "0.1.1"
description = "Interface para se comunicar com a api da OpenAI adotando as melhores práticas de LLM para criar e se comunicar com um agente."
authors = ["RWallan <3am.richardwallan@gmail.com>"]
readme = "README.md"
packages = [{include = "openiziai"}]
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Natural Language :: Portuguese (Brazilian)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.poetry.urls]
"Document" = "https://github.com/RWallan/openiziai/blob/main/README.md"
"Code" = "https://github.com/RWallan/openiziai.git"
"Bug Tracker" = "https://github.com/RWallan/openiziai/issues"
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.7.1"
trio = "^0.25.1"
openai = "^1.30.1"
tqdm = "^4.66.4"
[tool.poetry.group.dev.dependencies]
taskipy = "^1.12.2"
pytest = "^8.2.0"
pytest-cov = "^5.0.0"
ruff = "^0.4.4"
pytest-asyncio = "^0.23.7"
pytest-trio = "^0.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 79
[tool.ruff.format]
preview = true
quote-style = "single"
[tool.ruff.lint]
select = ["I", "F", "E", "W", "PL", "PT"]
ignore = ["PLC0414"]
[tool.pytest.ini_options]
pythonpath = "."
[tool.taskipy.tasks]
lint = "ruff check . && ruff check . --diff"
format = "ruff check . --fix && ruff format ."
pre_test = "task lint"
test = "pytest -s -x -vv --cov=openiziai"
post_test = "coverage html"