-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 755 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 755 Bytes
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
[project]
name = "core-kbt"
version = "0.2.0"
description = "Core Knowledge Base Trajectory"
authors = [
{ name = "andrey.siver", email = "andrey.siver@gmail.com" }
]
readme = "README.md"
requires-python = "^3.10"
dependencies = [
"ruamel-yaml (>=0.18.10,<0.19.0)",
"jinja2 (>=3.1.6,<4.0.0)",
"flask[async] (>=3.1.1,<4.0.0)",
"requests (>=2.32.4,<3.0.0)",
"openai (>=1.86.0,<2.0.0)",
"python-dotenv (>=1.1.0,<2.0.0)",
"rdflib (>=7.5.0,<8.0.0)"
]
[tool.pytest]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"