-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (56 loc) · 1.6 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
66
67
68
69
70
71
72
73
[tool.poetry]
name = "breba-docs"
version = "0.2.0"
description = "Documentation assistant will proof read your docs"
authors = ["Yason Khaburzaniya <yason@hey.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/breba-apps/breba-docs"
repository = "https://github.com/breba-apps/breba-docs"
documentation = "https://github.com/breba-apps/breba-docs"
keywords = ["gpt", "assistant", "documentation"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [ { include = "breba_docs" } ]
[tool.poetry.dependencies]
python = "^3.10"
docker = "^7.1.0"
openai = "^1.38.0"
python-dotenv = "^1.0.1"
requests = "^2.32.3"
pexpect = "^4.9.0"
gitpython = "^3.1.43"
jinja2 = "^3.1.4"
langchain-core = "^0.3.21"
langchain-openai = "^0.2.10"
langgraph = "^0.2.53"
pytest-asyncio = "^0.25.0"
interactive-process = "^0.2.0"
pty-server = "^0.1.10"
cleo = "^2.1.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.2"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
pythonpath = [
"breba_docs"
]
addopts = "--ignore=sample_project"
markers = [
"integration: marks the test as an integration test (deselect with '-m \"not integration\"')",
]
# log_cli = "True"
# log_cli_level = "INFO"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-mock = "^3.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
breba_docs = "breba_docs.cli:run"
breba-docs = "breba_docs.cli:run"
breba-docs2 = "breba_docs.cli2.app:run"