Skip to content

Latest commit

 

History

History
81 lines (57 loc) · 3.19 KB

README.md

File metadata and controls

81 lines (57 loc) · 3.19 KB

Project Name

A short description of the project. (e.g. Exploring the iris dataset with scikit-learn.)

Features

Quickstart

The only prerequisites for working with this template are git, and pipenv.

within the project folder run the following to install all dependencies listed in the pipenv file:

pipenv install 

Next, within the project folder run the following to activate the virtualenv:

pipenv shell

Lastly to ensure the repository level .gitconfig is included:

git config --local include.path ../.gitconfig

Directory structure

.
├── notebooks            # A directory to place all notebooks files.
│   ├── *.ipynb
│   └── README.md
├── data                 # A directory to place all input and output data files.
│   ├── input/
│   │    └── .gitignore
│   ├── output/
│   │    └── .gitignore
│   └── README.md
├── .gitignore           # Standard python .gitignore
├── .gitattributes
├── .gitconfig
├── pipfile              # The pipfile for reproducing the package environment
├── pipfile.lock 
└── README.md            # This readme.md

Safety

This repo uses a .gitattributes and .gitconfig to clean all *.ipynb cell outputs within the notebooks/ directory, here's a link to how this is done.

The data/* folders both contain a .gitignore with a bunch of common data formats listed such as multiple different Excel extensions, csv, parquet extensions, hfd extensions, json, and txt, among others. You may need to add your extensions here if they're less common.

This is to ensure the only content commited to a repository is code, and not data.

Resources

See this link for naming conventions of notebook files which may work for you.

The following are unofficial third party resources I've found which may be helpful, feel free to add if you come across any!