Metadata-Version: 1.1
Name: GDM
Version: 0.1a3
Summary: A very basic language-agnostic "dependency manager" using Git.
Home-page: https://github.com/jacebrowning/gdm
Author: Jace Browning
Author-email: jacebrowning@gmail.com
License: MIT
Description: GDM
        ===
        
        | |Build Status|
        | |Coverage Status|
        | |Scrutinizer Code Quality|
        | |PyPI Version|
        | |PyPI Downloads|
        
        Getting Started
        ===============
        
        Requirements
        ------------
        
        -  Python 3.3+
        -  Git (with stored credentials)
        -  OSX/Linux (with a decent shell for Git)
        
        Installation
        ------------
        
        GDM can be installed with pip:
        
        ::
        
            $ pip3 install gdm
        
        or directly from the source code:
        
        ::
        
            $ git clone https://github.com/jacebrowning/gdm.git
            $ cd gdm
            $ python3 setup.py install
        
        Basic Usage
        ===========
        
        After installation:
        
        ::
        
            $ python3
            >>> import gdm
            >>> gdm.__version__
        
        GDM doesn't do anything yet.
        
        For Contributors
        ================
        
        Requirements
        ------------
        
        -  Make:
        
           -  Windows: http://cygwin.com/install.html
           -  Mac: https://developer.apple.com/xcode
           -  Linux: http://www.gnu.org/software/make (likely already installed)
        
        -  virtualenv: https://pypi.python.org/pypi/virtualenv#installation
        -  Pandoc: http://johnmacfarlane.net/pandoc/installing.html
        -  Graphviz: http://www.graphviz.org/Download.php
        
        Installation
        ------------
        
        Create a virtualenv:
        
        ::
        
            $ make env
        
        Run the tests:
        
        ::
        
            $ make test
            $ make tests  # includes integration tests
        
        Build the documentation:
        
        ::
        
            $ make doc
        
        Run static analysis:
        
        ::
        
            $ make pep8
            $ make pep257
            $ make pylint
            $ make check  # includes all checks
        
        Prepare a release:
        
        ::
        
            $ make dist  # dry run
            $ make upload
        
        .. |Build Status| image:: http://img.shields.io/travis/jacebrowning/gdm/master.svg
           :target: https://travis-ci.org/jacebrowning/gdm
        .. |Coverage Status| image:: http://img.shields.io/coveralls/jacebrowning/gdm/master.svg
           :target: https://coveralls.io/r/jacebrowning/gdm
        .. |Scrutinizer Code Quality| image:: http://img.shields.io/scrutinizer/g/jacebrowning/gdm.svg
           :target: https://scrutinizer-ci.com/g/jacebrowning/gdm/?branch=master
        .. |PyPI Version| image:: http://img.shields.io/pypi/v/GDM.svg
           :target: https://pypi.python.org/pypi/GDM
        .. |PyPI Downloads| image:: http://img.shields.io/pypi/dm/GDM.svg
           :target: https://pypi.python.org/pypi/GDM
        
        Changelog
        =========
        
        0.1 (dev)
        ---------
        
         - Initial version.
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
