Metadata-Version: 2.1
Name: manati
Version: 0.0.2
Summary: A Python CLI for managing Python projects.
Home-page: https://github.com/maroba/manati
Author: maroba
Author-email: matthias.r.baer@googlemail.com
License: GPL v3
Description: # manati
        
        A Python CLI for managing Python projects.
        
        
        ## Usage
        
        ### Creating a project
        
        ```
        manati create project myproject
        ```
        
        creates a complete Python project structure inside the current working directory:
        
        ```
        myproject/
        ├── myproject
        │   └── __init__.py
        │   └── main.py
        ├── setup.py
        └── tests
            └── test_main.py
        ```
        
        including sample source,
        tests, documentation, `setup.py`, local `git` repository and a
        suitable `.gitignore` file.
        
        ## Installation
        
        Just use `pip`:
        
        ```
        pip install --upgrade manati
        ```
        
Keywords: CLI
Platform: ALL
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
