blob: cbadbca95cbbd1deb5aebe6c77cd61fab001a64e [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"
20
21[build-system]
22requires = ["poetry-core"]
23build-backend = "poetry.core.masonry.api"
24
25[tool.pytest.ini_options]
26addopts = [
27 "--cov=atmosphere",
28 "--cov-report=term-missing",
29]
30filterwarnings = [
31 "ignore::schematics.deprecated.SchematicsDeprecationWarning"
32]