-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 1.11 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "bento_drop_box_service"
version = "1.1.10"
description = "Drop box and basic file management service for the Bento platform."
authors = ["David Lougheed <[email protected]>", "Simon Chénard <[email protected]>"]
readme = "README.md"
packages = [{include = "bento_drop_box_service"}]
repository = "https://github.com/bento-platform/bento_drop_box_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 = "^11.10.1"}
aiofiles = "^23.2.1"
fastapi = {extras = ["all"], version = "^0.111.1"}
werkzeug = "^3.0.6"
python-multipart = "^0.0.9"
pydantic-settings = "^2.2.1"
[tool.poetry.group.dev.dependencies]
tox = "^4.15.0"
coverage = "^7.5.2"
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
flake8 = "^7.0.0"
pytest-asyncio = "^0.23.6"
debugpy = "^1.8.6"
httpx = "^0.27.0"