Metadata-Version: 2.1
Name: clifold
Version: 0.2.8
Summary: 🚀 A CLI tool for scaffolding any Python Projects 🚀
Home-page: https://github.com/ydcjeff/clifold
Author: Jeff Yang
Author-email: ydc.jeff@gmail.com
License: MIT
Description: <p align="center"><a href="https://ydcjeff.github.io/clifold" target="_blank" rel="noopener noreferrer"><img width="100" src="https://ydcjeff.github.io/clifold/logo.png" alt="Clifold logo"></a></p>
        
        <h2 align="center">Clifold</h2>
        
        <p align="center">
          <a href="https://circleci.com/gh/ydcjeff/clifold"><img src="https://circleci.com/gh/ydcjeff/clifold.svg?style=svg"></a>
          <a href="https://github.com/ydcjeff/clifold/actions"><img src="https://github.com/ydcjeff/clifold/workflows/Python%20package/badge.svg?branch=master"></a>
          <a href="https://travis-ci.com/github/ydcjeff/clifold"><img src="https://travis-ci.com/ydcjeff/clifold.svg?branch=master"></a>
        </p>
        
        
        Clifold is a command line tool that can quickly scaffold the python projects.
        
        ## Requirements
        - Minimum Python 3.6 installed
        - Pip 3 installed
        
        ## Installation
        
        First, make sure you have at least [python3.6](https://python.org) and [pip3](https://pypi.org/project/pip/) installed.
        
        ### Linux
        
        In linux distributions, at least python3.6 is normally preinstalled, but pip3 isn't. To install pip3 and clifold in linux distributions,
        
        #### Arch Linux
        ```
        sudo pacman -S python-pip
        pip3 install clifold
        ```
        #### Debian/Ubuntu
        ```
        sudo apt install python3-venv python3-pip
        pip3 install clifold
        ```
        #### openSUSE
        ```
        sudo zypper install python3-pip python3-setuptools python3-wheel
        pip3 install clifold
        ```
        #### Fedora
        ```
        sudo dnf install python3 python3-wheel
        pip3 install clifold
        ```
        #### CentOS/RHEL
        
        For CentOS/RHEL, please follow [this link](https://packaging.python.org/guides/installing-using-linux-tools/#centos-rhel).
        
        ### macOS
        
        Pip3 probably have been installed if python3 has been installed from python.org. After that,
        
        ```
        pip3 install clifold
        ```
        
        ### Windows
        ```
        pip3 install clifold
        ```
        
        ## Usage
        
        After clifold has been installed, you will have `clif` command to start using.
        
        ```
        usage: clif <arg> [options]
        
        🚀 A CLI tool for scaffolding any Python Projects 🚀
        
        Argument:
          project_name    Project name to create with venv
        
        Options:
          -g, --git       Make git initialization
          -ng, --no-git   Skip git initialization
          -p, --pkg       Ask packages to install
          -np, --no-pkg   Skip packages installation
          -i, --init      Create setup.py file
          -ni, --no-init  Skip setup.py file
          -V, --version   Output version number
          -h, --help      Output usage information
        ```
        
        ## LICENSE
        
        [MIT](https://opensource.org/licenses/MIT)
Keywords: scaffold python project cli
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Utilities
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Provides-Extra: test
