-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (32 loc) · 1.02 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "bento_aggregation_service"
version = "0.19.9"
description = "Search result aggregation service for the Bento platform."
authors = ["David Lougheed <[email protected]>"]
readme = "README.md"
packages = [{include = "bento_aggregation_service"}]
repository = "https://github.com/bento-platform/bento_aggregation_service"
license = "LGPL-3.0-only"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.10.0"
bento-lib = {extras = ["fastapi"], version = "^12.2.3"}
fastapi = {extras = ["standard"], version = "^0.115.4"}
pydantic-settings = "^2.1.0"
aiohttp = "^3.10.11"
pydantic = "^2.6.1"
[tool.poetry.group.dev.dependencies]
coverage = "^7.3.2"
debugpy = "^1.8.0"
flake8 = "^7.0.0"
pytest = "^8.2.1"
pytest-cov = "^5.0.0"
tox = "^4.11.3"
httpx = "^0.27.0"