commit 0d7198e22c7495c4586fd0ad2c4f58f32aa200dc Author: Isaac Shoebottom Date: Sat Feb 17 19:16:41 2024 -0400 Initial commit 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": {} +}