Metadata-Version: 2.0
Name: setuptools-parcels
Version: 0.0.8
Summary: an alternative interface to package_data
Home-page: https://github.com/toumorokoshi/setuptools-parcels
Author: Yusuke Tsutsumi
Author-email: yusuke@tsutsumi.io
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: System :: Software Distribution
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5

=================
setuptools-parcels
=================

An alternative syntaxt to setuptools package_data argument.

Improvements over package_data include:

* simple way to include all non-python files found in packages

-----
Usage
-----

You can use setuptools-parcels by including it in your setup.py, as an
additional argument to setup`s setup_requires function, and an
additional parcels parameter:

.. code:: python

    setup(...
          # add it here
          setup_reqires=["setuptools-parcels", "vcver"],
          parcels={}
    )

Without any configuration, parcels will search through all packages,
find any non-python files, and include those.

If the package_data is present, parcels will merge it's additions with
the existing values.


