blob: 6d4ba469d050088ec1bb9ba8969cb919719aa791 [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 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 Naser12676ed2022-09-15 20:16:15 -040033
34[build-system]
35requires = ["poetry-core"]
36build-backend = "poetry.core.masonry.api"
37
Mohammed Nasera45e7d02022-09-16 16:43:31 -040038[tool.isort]
39profile = "black"
40
Mohammed Naser12676ed2022-09-15 20:16:15 -040041[tool.pytest.ini_options]
42addopts = [
43 "--cov=atmosphere",
44 "--cov-report=term-missing",
45]
46filterwarnings = [
47 "ignore::schematics.deprecated.SchematicsDeprecationWarning"
48]