blob: ae6e9e05ea234f62aab27ba90e06cc2ed17fe38a [file] [log] [blame]
Mohammed Naser12676ed2022-09-15 20:16:15 -04001name = "atmosphere"
2
3[tool.poetry]
4name = "atmosphere"
5version = "0.1.0"
6description = ""
7authors = ["Mohammed Naser <mnaser@vexxhost.com>"]
8readme = "README.md"
9
Mohammed Naserd531f362022-09-16 11:38:55 -040010[tool.poetry.scripts]
11atmosphere-operator = "atmosphere.cmd.operator:main"
12
Mohammed Naser12676ed2022-09-15 20:16:15 -040013[tool.poetry.dependencies]
14python = "^3.10"
15schematics = "^2.1.1"
16pykube-ng = "^22.7.0"
Mohammed Naserd531f362022-09-16 11:38:55 -040017confspirator = "^0.3.0"
Mohammed Naserf9cb89b2022-09-18 10:42:37 -040018watchdog = "^2.1.9"
19structlog = "^22.1.0"
20rich = "^12.5.1"
21better-exceptions = "^0.3.3"
Mohammed Naser0f982132022-09-19 10:48:42 -040022mergedeep = "^1.3.4"
Mohammed Naser12676ed2022-09-15 20:16:15 -040023
24[tool.poetry.group.dev.dependencies]
25pytest = "^7.1.3"
26pytest-mock = "^3.8.2"
27pytest-cov = "^3.0.0"
28pytest-kind = "^22.9.0"
Mohammed Naser491bbd62022-09-15 21:03:41 -040029flake8 = "^5.0.4"
30flake8-isort = "^4.2.0"
Mohammed Naserf9cb89b2022-09-18 10:42:37 -040031python-on-whales = "^0.52.0"
32Jinja2 = "^3.1.2"
33jinja2-base64-filters = "^0.1.4"
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 = [
48 "ignore::schematics.deprecated.SchematicsDeprecationWarning"
49]