From cabdb55ba965b2c842c475dd353e10e5a02befc6 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 7 Apr 2022 15:21:18 -0400 Subject: [PATCH] Blank repo --- .commit_template | 5 +++++ pyproject.toml | 19 +++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .commit_template create mode 100644 pyproject.toml diff --git a/.commit_template b/.commit_template new file mode 100644 index 0000000..55675da --- /dev/null +++ b/.commit_template @@ -0,0 +1,5 @@ +# Title. No more than 50 characters ----> | + +# Leave a single blank line between the title and the body (excluding comments) + +# Body. Write a description of what you've changed. diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..418c325 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "mwc-pedprog-unit01-lab04" +version = "0.1.0" +description = "" +authors = ["Chris "] +license = "MIT" + +[tool.poetry.dependencies] +python = "^3.9" +jupyterlab = "^3.3.3" +pandas = "^1.4.2" +matplotlib = "^3.5.1" +seaborn = "^0.11.2" + +[tool.poetry.dev-dependencies] + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"