blob: d2055ba3c72fc519f59f3e4fc441839a4e14a9a6 [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 Naser12676ed2022-09-15 20:16:15 -040018
19[tool.poetry.group.dev.dependencies]
20pytest = "^7.1.3"
21pytest-mock = "^3.8.2"
22pytest-cov = "^3.0.0"
23pytest-kind = "^22.9.0"
Mohammed Naser491bbd62022-09-15 21:03:41 -040024flake8 = "^5.0.4"
25flake8-isort = "^4.2.0"
Mohammed Naser12676ed2022-09-15 20:16:15 -040026
27[build-system]
28requires = ["poetry-core"]
29build-backend = "poetry.core.masonry.api"
30
31[tool.pytest.ini_options]
32addopts = [
33 "--cov=atmosphere",
34 "--cov-report=term-missing",
35]
36filterwarnings = [
37 "ignore::schematics.deprecated.SchematicsDeprecationWarning"
38]