blob: 589816ade10d38211f066a5dd30c143e72524d0c [file] [log] [blame]
Mohammed Naser12676ed2022-09-15 20:16:15 -04001[tool.poetry]
2name = "atmosphere"
github-actions[bot]b0d6b252022-11-28 18:08:39 +00003version = "0.8.0"
Mohammed Naser12676ed2022-09-15 20:16:15 -04004description = ""
5authors = ["Mohammed Naser <mnaser@vexxhost.com>"]
6readme = "README.md"
7
Mohammed Naserd531f362022-09-16 11:38:55 -04008[tool.poetry.scripts]
9atmosphere-operator = "atmosphere.cmd.operator:main"
10
Mohammed Naser12676ed2022-09-15 20:16:15 -040011[tool.poetry.dependencies]
12python = "^3.10"
13schematics = "^2.1.1"
14pykube-ng = "^22.7.0"
Mohammed Naserf9cb89b2022-09-18 10:42:37 -040015structlog = "^22.1.0"
16rich = "^12.5.1"
17better-exceptions = "^0.3.3"
Mohammed Naser0f982132022-09-19 10:48:42 -040018mergedeep = "^1.3.4"
Mohammed Naser124a9bc2022-09-19 15:13:16 -040019taskflow = "^5.0.0"
Mohammed Naserbdb97742022-09-26 15:20:49 -040020eventlet = "^0.33.1"
Mohammed Naser5c804a22022-09-29 21:27:21 -040021tomli = "^2.0.1"
Mohammed Naser06707ba2022-09-29 23:13:46 -040022tomli-w = "^1.0.0"
okozachenko1203fc13f382022-10-26 00:34:55 +110023jmespath = "^1.0.1"
Mohammed Naser7d3c7972022-11-07 10:54:56 -050024jsonnet = "^0.18.0"
Mohammed Naser12676ed2022-09-15 20:16:15 -040025
26[tool.poetry.group.dev.dependencies]
27pytest = "^7.1.3"
28pytest-mock = "^3.8.2"
29pytest-cov = "^3.0.0"
30pytest-kind = "^22.9.0"
Mohammed Naser491bbd62022-09-15 21:03:41 -040031flake8 = "^5.0.4"
32flake8-isort = "^4.2.0"
Mohammed Naserf9cb89b2022-09-18 10:42:37 -040033python-on-whales = "^0.52.0"
34Jinja2 = "^3.1.2"
35jinja2-base64-filters = "^0.1.4"
Mohammed Nasereffebad2022-09-19 18:10:14 -040036molecule = "^4.0.1"
Mohammed Naser6e557c82022-10-01 20:10:13 +000037ansible-core = "^2.13.4"
Mohammed Naser12676ed2022-09-15 20:16:15 -040038
Mohammed Naserc45b71c2022-11-01 16:06:26 -040039
40[tool.poetry.group.docs.dependencies]
41mkdocs-material = "^8.5.7"
42
Mohammed Naser12676ed2022-09-15 20:16:15 -040043[build-system]
44requires = ["poetry-core"]
45build-backend = "poetry.core.masonry.api"
46
Mohammed Nasera45e7d02022-09-16 16:43:31 -040047[tool.isort]
48profile = "black"
49
Mohammed Naser12676ed2022-09-15 20:16:15 -040050[tool.pytest.ini_options]
51addopts = [
52 "--cov=atmosphere",
53 "--cov-report=term-missing",
54]
55filterwarnings = [
Mohammed Naser01ccc492022-09-26 20:26:43 -040056 "ignore::DeprecationWarning",
Mohammed Naser124a9bc2022-09-19 15:13:16 -040057 "ignore::schematics.deprecated.SchematicsDeprecationWarning",
58 "ignore:The asyncore module is deprecated",
Mohammed Naser12676ed2022-09-15 20:16:15 -040059]
Mohammed Naser124a9bc2022-09-19 15:13:16 -040060
61[tool.vulture]
62paths = ["atmosphere"]