commit a52293d58852d2d339be5d7d184ad6e1193247e4 Author: Max Nuding Date: Fri Dec 31 09:15:33 2021 +0100 Initial commit diff --git a/.nova/Configuration.json b/.nova/Configuration.json new file mode 100644 index 0000000..60033cb --- /dev/null +++ b/.nova/Configuration.json @@ -0,0 +1,5 @@ +{ + "workspace.art_style" : 0, + "workspace.color" : 2, + "workspace.name" : "jwst-plotter" +} diff --git a/main.py b/main.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b7c3c29 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "jwst-plotter" +version = "0.1.0" +description = "" +authors = ["Max Nuding "] + +[tool.poetry.dependencies] +python = "^3.10" +requests = "^2.26.0" + +[tool.poetry.dev-dependencies] + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"