From 0d7198e22c7495c4586fd0ad2c4f58f32aa200dc Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Sat, 17 Feb 2024 19:16:41 -0400 Subject: [PATCH] Initial commit --- .idea/.gitignore | 8 ++++++++ .idea/Calculator.iml | 8 ++++++++ Pipfile | 12 ++++++++++++ Pipfile.lock | 21 +++++++++++++++++++++ 4 files changed, 49 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/Calculator.iml create mode 100644 Pipfile create mode 100644 Pipfile.lock diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/Calculator.iml b/.idea/Calculator.iml new file mode 100644 index 0000000..753d84a --- /dev/null +++ b/.idea/Calculator.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..08fb404 --- /dev/null +++ b/Pipfile @@ -0,0 +1,12 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] + +[dev-packages] + +[requires] +python_version = "3.11" +python_full_version = "3.11.7" diff --git a/Pipfile.lock b/Pipfile.lock new file mode 100644 index 0000000..1a475dd --- /dev/null +++ b/Pipfile.lock @@ -0,0 +1,21 @@ +{ + "_meta": { + "hash": { + "sha256": "bc82cd27f07d4e24b750064464bbc233a141778868b9a387125705e2d4e8a830" + }, + "pipfile-spec": 6, + "requires": { + "python_full_version": "3.11.7", + "python_version": "3.11" + }, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.org/simple", + "verify_ssl": true + } + ] + }, + "default": {}, + "develop": {} +}