Added requirements.txt and README.md for ppl other than me
This commit is contained in:
parent
35bc9e25f2
commit
febc7b9ac4
|
@ -0,0 +1,11 @@
|
|||
# Visual Studio Code
|
||||
.vscode/
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
|
@ -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.)
|
|
@ -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
|
Reference in New Issue