This is the first stable release of Clifold - 🚀 A CLI tool for scaffolding any Python Projects 🚀
Included features:
- Create virtual environment
- Prompt user to install packages they want or no prompt
- Git initialization or no git initialization
- Init setup.py & .gitignore or no init
- Scaffold python project structure
For eg, let's `demo` be project name.
Then, the project structure will be scaffolded like this.
demo-venv
|-- bin
|-- lib
|-- include
|-- pyvenv.cfg
|-- demo
|-- demo
|-- __init__.py
|-- main.py
|-- tests
|-- __init__.py
|-- test_main.py
|-- .gitignore
|-- MANIFEST.in
|-- README.md
|-- setup.py