-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (41 loc) · 1018 Bytes
/
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
38
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "app"
version = "3.12.0"
description = "This service is designed to support pilot platform"
authors = ["Indoc Systems"]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
questionary = "^1.10.0"
tqdm = "4.56.0"
cryptography = "3.4.8"
pydantic-settings = "2.0.1"
pre-commit = "^2.19.0"
httpx = "^0.23.0"
qrcode = "^7.4.2"
pytest-click = "^1.1.0"
pyinstaller = "^5.13.0"
pywin32 = { version = "^306", optional = true }
pyjwt = "^2.9.0"
requests = "^2.32.3"
click = "^8.1.8"
urllib3 = "^2.3.0"
cffi = "^1.17.1"
charset-normalizer = "3.4.1"
[tool.poetry.extras]
windows = ["pywin32"]
[tool.poetry.dev-dependencies]
pytest = "6.2.5"
pytest-cov = "^3.0.0"
pytest-mock = "^3.7.0"
pytest-httpx = "^0.21.2"
pytest-random-order = "1.1.0"
requests-mock = "^1.9.3"
faker = "18.9.0"
[tool.poetry.scripts]
pilotcli = "app.pilotcli:cli"
[tool.pytest.ini_options]
addopts = "-v --random-order"
testpaths = "tests"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"