From a52293d58852d2d339be5d7d184ad6e1193247e4 Mon Sep 17 00:00:00 2001 From: Max Nuding Date: Fri, 31 Dec 2021 09:15:33 +0100 Subject: [PATCH] Initial commit --- .nova/Configuration.json | 5 +++++ main.py | 0 pyproject.toml | 15 +++++++++++++++ 3 files changed, 20 insertions(+) create mode 100644 .nova/Configuration.json create mode 100644 main.py create mode 100644 pyproject.toml 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"