Metadata-Version: 2.1
Name: pyscaffoldext-pyproject
Version: 0.3a1
Summary: PyScaffold extension adding a pyproject.toml file
Home-page: https://github.com/pyscaffold/pyscaffoldext-pyproject
Author: Florian Wilhelm
Author-email: florian.wilhelm@gmail.com
License: mit
Project-URL: Documentation, https://pyscaffold.org/
Project-URL: Twitter, https://twitter.com/PyScaffold
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/x-rst; charset=UTF-8
Requires-Dist: pyscaffold (<4.1a0,>=4.0a0)
Provides-Extra: testing
Requires-Dist: flake8 ; extra == 'testing'
Requires-Dist: pytest ; extra == 'testing'
Requires-Dist: pytest-cov ; extra == 'testing'
Requires-Dist: pytest-virtualenv ; extra == 'testing'
Requires-Dist: pytest-xdist ; extra == 'testing'

.. image:: https://travis-ci.org/pyscaffold/pyscaffoldext-pyproject.svg?branch=master
    :target: https://travis-ci.org/pyscaffold/pyscaffoldext-pyproject
.. image:: https://img.shields.io/coveralls/github/pyscaffold/pyscaffoldext-pyproject/master.svg
    :alt: Coveralls
    :target: https://coveralls.io/r/pyscaffold/pyscaffoldext-pyproject
.. image:: https://img.shields.io/pypi/v/pyscaffoldext-pyproject.svg
    :alt: PyPI-Server
    :target: https://pypi.org/project/pyscaffoldext-pyproject

=======================
pyscaffoldext-pyproject
=======================


This is a simple PyScaffold extension which serves as a blueprint.
It's sole purpose is to create a ``pyproject.toml`` file according to `[PEP 518]`_.
This extension was bootstrapped with PyScaffold's `custom-extension`_::

    putup pyscaffoldext-pyproject --custom-extension

Read more about creating an extension under http://pyscaffold.org/.

Usage
=====

Just install this package with ``pip install pyscaffoldext-pyproject``
and note that ``putup -h`` shows a new option ``--pyproject``.
Using this will create a default ``pyproject.toml``.

.. _custom-extension: https://github.com/pyscaffold/pyscaffoldext-custom-extension
.. _[PEP 518]: https://www.python.org/dev/peps/pep-0518/


