Skip to content

Minimal template with the essentials for quickly setting up new python projects. Includes a simple folder structure and a conda environment for isolated dependency management.

License

Notifications You must be signed in to change notification settings

ruankie/conda-py-minimal-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Repo stars GitHub file size in bytes

conda-py-minimal-template

Minimal template with the essentials for quickly setting up new python projects. Includes a simple folder structure and a conda environment for isolated dependency management.

Usage

  1. Start a new repo using this template
  2. Update your LICENSE file.
  3. Update your README.md file.
  4. Set up and activate conda environment
    1. Rename your conda environment in the ./conda.yml file.
    2. Add/change any dependencies and their versions in the ./conda.yml file.
    3. Set up your conda environment and activate it by running:
      conda env create -f conda.yml
      conda activate <your-env-name>
  5. Add your own scripts in ./src/
  6. Add your own notebooks in ./notebooks/
  7. Add your own data in ./data/

This template creates the following folder structure:

<your-repo-name>
├── LICENSE
├── README.md
├── conda.yml
├── data
├── notebooks
│   └── example.ipynb
├── setup.py
└── src
    ├── __init__.py
    └── utils.py

About

Minimal template with the essentials for quickly setting up new python projects. Includes a simple folder structure and a conda environment for isolated dependency management.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages