-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 847 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 847 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
32
33
34
35
[project]
name = "api"
version = "0.1.0"
description = ""
authors = [
{name = "takojakos",email = "dziki.sledz@op.pl"}
]
readme = "README.md"
requires-python = ">=3.11,<3.14"
dependencies = [
"django (>=5.2.3,<6.0.0)",
"djangorestframework (>=3.16.0,<4.0.0)",
"requests (>=2.32.4,<3.0.0)",
"pyside6 (>=6.9.1,<7.0.0)",
"aiohttp (>=3.12.13,<4.0.0)",
"django-cors-headers (>=4.7.0,<5.0.0)",
"pytest (>=8.4.1,<9.0.0)",
"pytest-qt (>=4.5.0,<5.0.0)",
"pytest-asyncio (>=1.0.0,<2.0.0)",
"pytest-timeout (>=2.4.0,<3.0.0)"
]
[tool.poetry]
packages = [{include = "api", from = "src"}]
[tool.poetry.group.dev.dependencies]
pyinstaller = "^6.14.1"
pytest = "^8.4.1"
pytest-qt = "^4.5.0"
pytest-asyncio = "^1.1.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"