feat: add simple controller to generate helm values
diff --git a/pyproject.toml b/pyproject.toml
index 5d7bf33..cbadbca 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,2 +1,32 @@
-[tool.isort]
-profile = "black"
+name = "atmosphere"
+
+[tool.poetry]
+name = "atmosphere"
+version = "0.1.0"
+description = ""
+authors = ["Mohammed Naser <mnaser@vexxhost.com>"]
+readme = "README.md"
+
+[tool.poetry.dependencies]
+python = "^3.10"
+schematics = "^2.1.1"
+pykube-ng = "^22.7.0"
+
+[tool.poetry.group.dev.dependencies]
+pytest = "^7.1.3"
+pytest-mock = "^3.8.2"
+pytest-cov = "^3.0.0"
+pytest-kind = "^22.9.0"
+
+[build-system]
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"
+
+[tool.pytest.ini_options]
+addopts = [
+ "--cov=atmosphere",
+ "--cov-report=term-missing",
+]
+filterwarnings = [
+ "ignore::schematics.deprecated.SchematicsDeprecationWarning"
+]