diff --git a/README.md b/README.md index f53a1a1..f329d72 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Cookiecutter Data Science +# Cookiecutter Data Science - Conda _A logical, reasonably standardized, but flexible project structure for doing and sharing data science work._ @@ -60,8 +60,7 @@ The directory structure of your new project looks like this: ├── reports <- Generated analysis as HTML, PDF, LaTeX, etc. │ └── figures <- Generated graphics and figures to be used in reporting │ -├── requirements.txt <- The requirements file for reproducing the analysis environment, e.g. -│ generated with `pip freeze > requirements.txt` +├── requirements <- The requirements directory for reproducing the analysis environment │ ├── src <- Source code for use in this project. │ ├── __init__.py <- Makes src a Python module diff --git a/{{ cookiecutter.repo_name }}/README.md b/{{ cookiecutter.repo_name }}/README.md index 78eb676..dbdb05e 100644 --- a/{{ cookiecutter.repo_name }}/README.md +++ b/{{ cookiecutter.repo_name }}/README.md @@ -28,8 +28,8 @@ Project Organization ├── reports <- Generated analysis as HTML, PDF, LaTeX, etc. │   └── figures <- Generated graphics and figures to be used in reporting │ - ├── requirements.txt <- The requirements file for reproducing the analysis environment, e.g. - │ generated with `pip freeze > requirements.txt` + ├── requirements <- The requirements file for reproducing the analysis environment, e.g. + │ generated with `conda env export > requirements/environment.yaml` │ ├── setup.py <- makes project pip installable (pip install -e .) so src can be imported ├── src <- Source code for use in this project.