Skip to content
This repository was archived by the owner on Dec 29, 2024. It is now read-only.

Releases: ydcjeff/clifold

0.2.10

06 Apr 09:04

Choose a tag to compare

v0.2.10

v0.2.10: build

0.2.9

06 Apr 08:39

Choose a tag to compare

Add Default: True of some commands in help messages

First Stable Release

05 Apr 17:17

Choose a tag to compare

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