blob: 1c7be9ab1214f5650c1f26699d1f61b38f2c15e7 [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
10[tool.poetry.dependencies]
11python = "^3.10"
12schematics = "^2.1.1"
13pykube-ng = "^22.7.0"
14
15[tool.poetry.group.dev.dependencies]
16pytest = "^7.1.3"
17pytest-mock = "^3.8.2"
18pytest-cov = "^3.0.0"
19pytest-kind = "^22.9.0"
Mohammed Naser491bbd62022-09-15 21:03:41 -040020flake8 = "^5.0.4"
21flake8-isort = "^4.2.0"
Mohammed Naser12676ed2022-09-15 20:16:15 -040022
23[build-system]
24requires = ["poetry-core"]
25build-backend = "poetry.core.masonry.api"
26
27[tool.pytest.ini_options]
28addopts = [
29 "--cov=atmosphere",
30 "--cov-report=term-missing",
31]
32filterwarnings = [
33 "ignore::schematics.deprecated.SchematicsDeprecationWarning"
34]