-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
108 lines (102 loc) · 2.45 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[tool.poetry]
name = "containres"
version = "0.1.0"
description = ""
authors = ["Drew Paettie <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.9"
alembic = "1.13.1"
arrow = "1.3.0"
banal = "1.0.6"
blinker = "1.7.0"
boto3 = "1.34.50"
botocore = "1.34.50"
cacheout = "0.16.0"
certifi = "2024.2.2"
cffi = "1.16.0"
cfn-flip = "1.3.0"
charset-normalizer = "3.3.2"
click = "8.1.7"
commonmark = "0.9.1"
cryptography = "41.0.7"
dataset = "1.6.2"
fastcounter = "1.1.0"
idna = "3.6"
jinja2 = "3.1.3"
jmespath = "1.0.1"
mako = "1.3.2"
markupsafe = "2.1.5"
mypy = "0.991"
mypy-extensions = "1.0.0"
orjson = "3.9.15"
prometheus-client = "0.20.0"
prompt-toolkit = "3.0.43"
psutil = "5.9.8"
pycparser = "2.21"
pydantic = "1.10.14"
pygments = "2.17.2"
pyhocon = "0.3.60"
pyjwt = "2.8.0"
pyparsing = "2.4.7"
python-dateutil = "2.8.2"
python-dynamodb-lock = "0.9.1"
pytz = "2022.7.1"
pytz-deprecation-shim = "0.1.0.post0"
pyyaml = "6.0.1"
questionary = "1.10.0"
random-password-generator = "2.2.0"
requests = "2.31.0"
requests-aws4auth = "1.2.3"
requests-unixsocket = "0.3.0"
rich = "12.6.0"
s3transfer = "0.10.0"
semver = "2.13.0"
sh = "1.14.3"
shortuuid = "1.0.11"
six = "1.16.0"
sqlalchemy = "1.4.51"
tomli = "2.0.1"
troposphere = "4.6.0"
types-python-dateutil = "2.8.19.20240106"
typing-extensions = "4.10.0"
tzdata = "2024.1"
tzlocal = "4.3.1"
urllib3 = "1.26.18"
validators = "0.22.0"
wcwidth = "0.2.13"
aiofiles = "23.2.1"
sanic = "23.12.1"
sanic-ext = "23.12.0"
sanic-routing = "23.12.0"
supervisor = ">=4.0,<5.0"
python-ldap = ">=3.0,<4.0"
ldappool = ">=3.0,<4.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.0,<7.3.0"
pytest-mock = ">=3.0,<4.0"
pytest-cov = ">=4.0,<5.0"
pytest-xdist = ">=3.0,<4.0"
memory-profiler = ">=0.0,<1.0"
defusedxml = ">=0.0,<1.0"
selenium = ">=4.0,<5.0"
coverage = {version = "7.4.4", extras = ["toml"]}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = [
"."
]
[tool.poetry.scripts]
resctl-ideaclustermanager = "containres.ideaclustermanager.cli.cli_main:main"
resctl-ideavirtualdesktopcontroller = "containres.ideavirtualdesktopcontroller.cli.cli_main:main"
resserver-ideaclustermanager = "containres.ideaclustermanager.app.app_main:main"
resserver-ideavirtualdesktopcontroller = "containres.ideavirtualdesktopcontroller.app.app_main:main"
[tool.coverage.report]
omit = [
"tests/**/*.py",
]
show_missing = true