Metadata-Version: 1.1
Name: piprun
Version: 0.0.6
Summary: Specify scripts' PyPI dependencies inline
Home-page: https://github.com/koterpillar/piprun
Author: Alexey Kotlyarov
Author-email: a@koterpillar.com
License: UNKNOWN
Description: piprun
        ======
        
        ``piprun`` lets you specify PyPI packages your script needs inline:
        
        .. code:: python
        
            #!/usr/bin/env piprun Flask==0.10.1 --
        
            from flask import Flask
            app = Flask(__name__)
        
            # ...
        
        Optionally, specify the Python interpreter path (e.g. for Python 2) as
        the first argument:
        
        .. code:: python
        
            #!/usr/bin/env piprun /usr/bin/python2 Flask==0.10.1 --
            # ...
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
