blob: 650687be12fffead007c958464c898fd1ef782a2 [file] [log] [blame]
Mohammed Naser12676ed2022-09-15 20:16:15 -04001[tool.poetry]
2name = "atmosphere"
github-actions[bot]5a1b8c92022-09-28 21:47:35 +00003version = "0.3.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 Naser12676ed2022-09-15 20:16:15 -040022
23[tool.poetry.group.dev.dependencies]
24pytest = "^7.1.3"
25pytest-mock = "^3.8.2"
26pytest-cov = "^3.0.0"
27pytest-kind = "^22.9.0"
Mohammed Naser491bbd62022-09-15 21:03:41 -040028flake8 = "^5.0.4"
29flake8-isort = "^4.2.0"
Mohammed Naserf9cb89b2022-09-18 10:42:37 -040030python-on-whales = "^0.52.0"
31Jinja2 = "^3.1.2"
32jinja2-base64-filters = "^0.1.4"
Mohammed Nasereffebad2022-09-19 18:10:14 -040033molecule = "^4.0.1"
Mohammed Naser12676ed2022-09-15 20:16:15 -040034
35[build-system]
36requires = ["poetry-core"]
37build-backend = "poetry.core.masonry.api"
38
Mohammed Nasera45e7d02022-09-16 16:43:31 -040039[tool.isort]
40profile = "black"
41
Mohammed Naser12676ed2022-09-15 20:16:15 -040042[tool.pytest.ini_options]
43addopts = [
44 "--cov=atmosphere",
45 "--cov-report=term-missing",
46]
47filterwarnings = [
Mohammed Naser01ccc492022-09-26 20:26:43 -040048 "ignore::DeprecationWarning",
Mohammed Naser124a9bc2022-09-19 15:13:16 -040049 "ignore::schematics.deprecated.SchematicsDeprecationWarning",
50 "ignore:The asyncore module is deprecated",
Mohammed Naser12676ed2022-09-15 20:16:15 -040051]
Mohammed Naser124a9bc2022-09-19 15:13:16 -040052
53[tool.vulture]
54paths = ["atmosphere"]