Metadata-Version: 1.1
Name: pgraph
Version: 0.2.0
Summary: Drawing graph of the dependencies of Python packages
Home-page: https://github.com/mkouhei/pgraph
Author: Kouhei Maeda
Author-email: mkouhei@palmtb.net
License: UNKNOWN
Description: =======================================================
         pgraph: drawing graph of Python packages dependencies
        =======================================================
        
        The pgraph provides the graph of Python dependencies,
        powered by `Linkdraw <https://github.com/mtoshi/linkdraw/wiki>`_, `Pyramid <http://docs.pylonsproject.org/en/latest/docs/pyramid.html>`_, and `py-deps <https://github.com/mkouhei/py-deps>`_.
        
        Status
        ======
        
        .. image:: https://secure.travis-ci.org/mkouhei/pgraph.png?branch=master
           :target: http://travis-ci.org/mkouhei/pgraph
        .. image:: https://coveralls.io/repos/mkouhei/pgraph/badge.png?branch=master
           :target: https://coveralls.io/r/mkouhei/pgraph?branch=master
        .. image:: https://img.shields.io/pypi/v/pgraph.svg
           :target: https://pypi.python.org/pypi/pgraph
        .. image:: https://readthedocs.org/projects/pgraph/badge/?version=latest
           :target: https://readthedocs.org/projects/pgraph/?badge=latest
           :alt: Documentation Status
        
        How to run things locally
        =========================
        
        1. Installing RabbitMQ.::
        
             $ sudo apt-get install rabbitmq-server
        
        2. Setup RabbitMQ.::
        
             $ sudo rabbitmqctl add_vhost /pgraph
             $ sudo rabbitmqctl add_user pgraph passw0rd
             $ sudo rabbitmqctl set_permissions -p /pgraph pgraph ".*" ".*" ".*"
             $ sudo rabbitmqctl delete_user guest
        
        3. Cloning repository.::
        
             $ git clone https://github.com/mkouhei/pgraph
             $ cd pgraph
             $ git submodule init
             $ git submodule update
        
        4. Createing virtual environment.::
        
             $ pyvenv /path/to/venv
             $ . /path/to/venv/bin/activate
        
        5. Installing pgraph.::
              
             (venv)$ cd /path/to/pgraph
             (venv)$ python setup.py install
             or
             (venv)$ pip install --egg pgraph
        
        6. Running celery worker.::
        
             (venv)$ CELERY_CONFIG=/path/to/pgraph/development.ini celery -A pgraph.tasks worker --loglevel=info
        
        7. Running pserve from another venv session.::
        
             (venv)$ pserve /path/to/pgraph/development.ini
        
        History
        =======
        
        0.2.0 (2015-06-19)
        ------------------
        
        * Integrates configurations locally and Heroku.
        * Changes not use job queue if Package data exists in the cache.
        * Enable to change Celery configuration using CELERY_CONFIG variable and ``.ini`` file.
        * Specify package version.
        * Adds linkdraw configuration link.
        * Adds search form at navigation bar.
        * Changes searched view.
        * Coverage >= 90%.
        * Supports running on Heroku.
        
        0.1.0 (2015-06-08)
        ------------------
        
        * Initial release.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Framework :: Pyramid
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 :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
