Metadata-Version: 2.1
Name: create-tox-app
Version: 1.0.2
Summary: A wrapper that creates a tox env with the minimal setup for a Python app.
Home-page: https://github.com/wozniakpl/create-tox-app.git
Author: Bartosz Woźniak
Author-email: bwozniakdev@protonmail.com
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
License-File: LICENSE

create-tox-app
==============

A small script to set up a tox environment with ``setup.py``,
formatting, linting and tests.

It does this:

::

   $ create-tox-app my_app_name
   $ tree -a my_app_name/
   my_app_name/
   ├── .gitignore
   ├── .pylintrc
   ├── README.md
   ├── my_app_name
   │   ├── __init__.py
   │   ├── __main__.py
   │   └── exit_codes.py
   ├── setup.py
   ├── tests
   │   └── test_app.py
   └── tox.ini

You're ready to call ``tox`` to run tests, format check and linting.
``tox -e format`` would reformat your code.

Installation
------------

::

   pip3 install create-tox-app
