From febc7b9ac4b9a9ed31c9b2da6e70432959068963 Mon Sep 17 00:00:00 2001 From: paoda Date: Fri, 29 Nov 2019 15:40:33 -0400 Subject: [PATCH] Added requirements.txt and README.md for ppl other than me --- .gitignore | 11 +++++++++++ README.md | 5 +++++ requirements.txt | 10 ++++++++++ intergral.py => riemann-sum.py | 0 testing.py => tmp-tests.py | 0 5 files changed, 26 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 requirements.txt rename intergral.py => riemann-sum.py (100%) rename testing.py => tmp-tests.py (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4690e71 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# Visual Studio Code +.vscode/ + +# Environments +.env +. +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e05ac63 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Riemann Sum Python Thing +This is my Riemann Sum Implementation with Turtle I did during the 2018/2019 Holidays + +You can install the dependencies (scipy & numpy) by typing `pip install -r requirements.txt`, in the project root. +Make sure to use a virtual environment! (though this is more of a reminder for myself then anyone else.) \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..682a839 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,10 @@ +astroid==2.3.3 +isort==4.3.21 +lazy-object-proxy==1.4.3 +mccabe==0.6.1 +numpy==1.17.4 +pylint==2.4.4 +scipy==1.3.3 +six==1.13.0 +typed-ast==1.4.0 +wrapt==1.11.2 diff --git a/intergral.py b/riemann-sum.py similarity index 100% rename from intergral.py rename to riemann-sum.py diff --git a/testing.py b/tmp-tests.py similarity index 100% rename from testing.py rename to tmp-tests.py