File size: 934 Bytes
6c50d1f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[tool.poetry]
name = "autoresttest"
version = "0.1.0"
description = "AutoRestTest"
readme = "README.md"
packages = [{ include = "autoresttest", from = "src" }]

[tool.poetry.dependencies]
python = ">=3.10,<3.13"

# Runtime dependencies
scikit-learn = "1.5.0"
numpy = "1.25.2"
scipy = "1.10.1"
gensim = "4.3.2"
openai = "1.109.1"
beautifulsoup4 = "4.12.3"
python-dotenv = "1.0.1"
prance = "23.6.21.0"
openapi-spec-validator = "0.7.1"
pydantic = "2.7.1"
tomli = "2.0.1"
httpx = "<0.28"
tqdm = "^4.66"

# TUI dependencies
rich = "^13.7"

[tool.poetry.scripts]
autoresttest = "autoresttest.autoresttest:main"

[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"

[dependency-groups]
dev = [
    "mypy (>=1.19.0,<2.0.0)",
    "pyright (>=1.1.407,<2.0.0)"
]

[tool.pyright]
include = ["src"]
pythonVersion = "3.10"
typeCheckingMode = "basic"
reportMissingImports = true
reportMissingTypeStubs = false