Metadata-Version: 2.1
Name: pyboot
Version: 0.1.0
Summary: A python project bootstraper
Home-page: https://gitlab.com/plup/pyboot
Author: Plup
Author-email: plup@plup.io
License: ISC
Description: # Python project bootstrap
        
        Basic scaffolding for python3 CLI projects
        
        ## Init
        
        Init the project:
        ```
        $ make init project=myapp
        ```
        This automatically rename references to `pybootstrap`. Check `setup.cfg` to adjust descriptions.
        
        Reset the versioning:
        ```
        $ rm -rf .git
        $ git init
        $ git add .
        $ git commit -m "Init project from bootstraper"
        ```
        
        ## Test
        
        ```
        $ pip install .[dev]
        $ tox
        ```
        
        ## Todo
        
        * Waiting for a editable standardization before moving to PEP517 (See: https://discuss.python.org/t/specification-of-editable-installation/1564/40)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
