-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (82 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (82 loc) · 1.85 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[tool.poetry]
name = "Test Analytics Over ReportPortal"
version = "0.1.0"
description = "AI-powered assistant for ReportPortal test analytics"
authors = ["Parag Kamble <kamble.parag@gmail.com>"]
readme = "README.md"
# packages = [{include = "test_insights", from = "src"}]
packages = [{include = "test_insights"}]
[tool.poetry.dependencies]
python = "^3.11"
httpx = "^0.24.1"
pydantic = "^2.0.0"
pydantic-settings = "^2.0.0"
chromadb = "^0.4.0"
sentence-transformers = "^2.2.2"
tenacity = "^8.2.0"
structlog = "^24.1.0"
click = "^8.1.0"
rich = "^13.0.0"
tqdm = "^4.66.0"
python-dotenv = "^1.0.0"
openai = "^1.12.0"
anthropic = "^0.18.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-asyncio = "^0.21.0"
pytest-cov = "^4.1.0"
black = "^24.0.0"
ruff = "^0.1.0"
mypy = "^1.8.0"
pre-commit = "^3.6.0"
[tool.poetry.scripts]
test_insights = "test_insights.cli:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# [tool.black]
# line-length = 100
# target-version = ['py311']
[tool.ruff]
line-length = 100
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = "test_*.py"
[tool.coverage.run]
source = ["src"]
omit = ["*/tests/*", "*/examples/*"]
[tool.black]
line-length = 100
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
| venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 100
known_first_party = ["test_insights"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[tool.flake8]
ignore = ["W503"]