Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Python boilerplate optional in initial setup #49

Closed
pjbull opened this issue Sep 5, 2016 · 2 comments
Closed

Make Python boilerplate optional in initial setup #49

pjbull opened this issue Sep 5, 2016 · 2 comments
Milestone

Comments

@pjbull
Copy link
Member

pjbull commented Sep 5, 2016

This makes the project cleaner for other languages, e.g. R, Julia, etc.

@chrisjkuch
Copy link
Contributor

chrisjkuch commented Oct 13, 2022

Specifically, remove everything in the module folder that is python specific:

├── {{ cookiecutter.module_name }}                <- Source code for use in this project.
│   │
│   ├── __init__.py    <- Makes {{ cookiecutter.module_name }} a Python module
│   │
│   ├── data           <- Scripts to download or generate data
│   │   └── make_dataset.py
│   │
│   ├── features       <- Scripts to turn raw data into features for modeling
│   │   └── build_features.py
│   │
│   ├── models         <- Scripts to train models and then use trained models to make
│   │   │                 predictions
│   │   ├── predict_model.py
│   │   └── train_model.py
│   │
│   └── visualization  <- Scripts to create exploratory and results oriented visualizations
│       └── visualize.py

should become

├── {{ cookiecutter.module_name }}                <- Source code for use in this project.
│   │
│   ├── __init__.py    <- Makes {{ cookiecutter.module_name }} a Python module
│   │

IF the user specifies that they do not want any Python boilerplate.

@chrisjkuch
Copy link
Contributor

Closed by #286

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants