Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added gitignore file. Added initial requirements file. Readme updated.
Jamey Calabrese
  • Loading branch information
Jamey committed Oct 22, 2020
1 parent 18feb40 commit 2782262
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
__pycache__
venv
29 changes: 17 additions & 12 deletions README.md
@@ -1,18 +1,23 @@
# CSE Senior Design Project Group 28

## Hello World!
## Environment Configuration

For right now this is an empty repository. This will hold everything we
work on for the coming year. We'll all work in separate branches in order
to make collaboration simple.
Please go here https://docs.python.org/3.8/tutorial/venv.html for detailed instructions on configuring a virtual environment.
It is important that you create the virtual environment in the "./venv" directory. The .gitignore file has been configured
for the virtual environment to be located in "./venv".

## What's next
## Install necessary packages

We'll have to create a project write up. This can exist in a markdown file
or it can exist as a PDF commited into the repository. That's the next step
on the plate.
Once you have configured your virtual environment you must first activate it with

After we pin down an initial design we'll have to setup a python environment
for the repository. This will lock the python3 version so all of us are working
with the same interpreter. This is extremely important and should addressed
before a single line of code is written.
"source venv/bin/activate" - macOS or Linux

"venv\Scripts\activate.bat" - Windows

NOTE: These commands assume that you are currently located in the upper most working directory

To install the necessary packages execute the following

"pip install -r requirements.txt"

All current required packages will be downloaded and installed.
38 changes: 38 additions & 0 deletions requirements.txt
@@ -0,0 +1,38 @@
absl-py==0.10.0
astunparse==1.6.3
cachetools==4.1.1
certifi==2020.6.20
chardet==3.0.4
gast==0.3.3
google-auth==1.22.1
google-auth-oauthlib==0.4.1
google-pasta==0.2.0
grpcio==1.33.1
h5py==2.10.0
idna==2.10
Keras==2.4.3
Keras-Preprocessing==1.1.2
Markdown==3.3.2
numpy==1.18.5
oauthlib==3.1.0
opt-einsum==3.3.0
pandas==1.1.3
protobuf==3.13.0
pyasn1==0.4.8
pyasn1-modules==0.2.8
python-dateutil==2.8.1
pytz==2020.1
PyYAML==5.3.1
requests==2.24.0
requests-oauthlib==1.3.0
rsa==4.6
scipy==1.5.3
six==1.15.0
tensorboard==2.3.0
tensorboard-plugin-wit==1.7.0
tensorflow==2.3.1
tensorflow-estimator==2.3.0
termcolor==1.1.0
urllib3==1.25.11
Werkzeug==1.0.1
wrapt==1.12.1

0 comments on commit 2782262

Please sign in to comment.