Added requirements.txt and README.md for ppl other than me

This commit is contained in:
paoda 2019-11-29 15:40:33 -04:00
parent 35bc9e25f2
commit febc7b9ac4
5 changed files with 26 additions and 0 deletions

11
.gitignore vendored Normal file
View File

@ -0,0 +1,11 @@
# Visual Studio Code
.vscode/
# Environments
.env
.
env/
venv/
ENV/
env.bak/
venv.bak/

5
README.md Normal file
View File

@ -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.)

10
requirements.txt Normal file
View File

@ -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