blob: 868d23d6710ec2a1623b90e7b87a072d66dd4cc0 [file] [log] [blame]
Mohammed Naser12676ed2022-09-15 20:16:15 -04001[tool.poetry]
2name = "atmosphere"
github-actions[bot]e2bb0282022-10-06 18:34:03 +00003version = "0.5.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 Naser12676ed2022-09-15 20:16:15 -040024
25[tool.poetry.group.dev.dependencies]
26pytest = "^7.1.3"
27pytest-mock = "^3.8.2"
28pytest-cov = "^3.0.0"
29pytest-kind = "^22.9.0"
Mohammed Naser491bbd62022-09-15 21:03:41 -040030flake8 = "^5.0.4"
31flake8-isort = "^4.2.0"
Mohammed Naserf9cb89b2022-09-18 10:42:37 -040032python-on-whales = "^0.52.0"
33Jinja2 = "^3.1.2"
34jinja2-base64-filters = "^0.1.4"
Mohammed Nasereffebad2022-09-19 18:10:14 -040035molecule = "^4.0.1"
Mohammed Naser6e557c82022-10-01 20:10:13 +000036ansible-core = "^2.13.4"
Mohammed Naser12676ed2022-09-15 20:16:15 -040037
Mohammed Naserc45b71c2022-11-01 16:06:26 -040038
39[tool.poetry.group.docs.dependencies]
40mkdocs-material = "^8.5.7"
41
Mohammed Naser12676ed2022-09-15 20:16:15 -040042[build-system]
43requires = ["poetry-core"]
44build-backend = "poetry.core.masonry.api"
45
Mohammed Nasera45e7d02022-09-16 16:43:31 -040046[tool.isort]
47profile = "black"
48
Mohammed Naser12676ed2022-09-15 20:16:15 -040049[tool.pytest.ini_options]
50addopts = [
51 "--cov=atmosphere",
52 "--cov-report=term-missing",
53]
54filterwarnings = [
Mohammed Naser01ccc492022-09-26 20:26:43 -040055 "ignore::DeprecationWarning",
Mohammed Naser124a9bc2022-09-19 15:13:16 -040056 "ignore::schematics.deprecated.SchematicsDeprecationWarning",
57 "ignore:The asyncore module is deprecated",
Mohammed Naser12676ed2022-09-15 20:16:15 -040058]
Mohammed Naser124a9bc2022-09-19 15:13:16 -040059
60[tool.vulture]
61paths = ["atmosphere"]