Mohammed Naser | 12676ed | 2022-09-15 20:16:15 -0400 | [diff] [blame^] | 1 | name = "atmosphere" |
| 2 | |
| 3 | [tool.poetry] |
| 4 | name = "atmosphere" |
| 5 | version = "0.1.0" |
| 6 | description = "" |
| 7 | authors = ["Mohammed Naser <mnaser@vexxhost.com>"] |
| 8 | readme = "README.md" |
| 9 | |
| 10 | [tool.poetry.dependencies] |
| 11 | python = "^3.10" |
| 12 | schematics = "^2.1.1" |
| 13 | pykube-ng = "^22.7.0" |
| 14 | |
| 15 | [tool.poetry.group.dev.dependencies] |
| 16 | pytest = "^7.1.3" |
| 17 | pytest-mock = "^3.8.2" |
| 18 | pytest-cov = "^3.0.0" |
| 19 | pytest-kind = "^22.9.0" |
| 20 | |
| 21 | [build-system] |
| 22 | requires = ["poetry-core"] |
| 23 | build-backend = "poetry.core.masonry.api" |
| 24 | |
| 25 | [tool.pytest.ini_options] |
| 26 | addopts = [ |
| 27 | "--cov=atmosphere", |
| 28 | "--cov-report=term-missing", |
| 29 | ] |
| 30 | filterwarnings = [ |
| 31 | "ignore::schematics.deprecated.SchematicsDeprecationWarning" |
| 32 | ] |