blob: 8c0d3547d9092bd0876fa9da235de6286792eeba [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
Mohammed Nasera45e7d02022-09-16 16:43:31 -040031[tool.isort]
32profile = "black"
33
Mohammed Naser12676ed2022-09-15 20:16:15 -040034[tool.pytest.ini_options]
35addopts = [
36 "--cov=atmosphere",
37 "--cov-report=term-missing",
38]
39filterwarnings = [
40 "ignore::schematics.deprecated.SchematicsDeprecationWarning"
41]