Metadata-Version: 1.1
Name: gnusocial
Version: 1.0.1
Summary: GNU Social API for Python 3
Home-page: https://gitgud.io/dtluna/pygnusocial
Author: dtluna
Author-email: dtluna@openmailbox.org
License: GPLv3
Description: pygnusocial
        ===========
        
        Installation
        ------------
        
        ``pip install gnusocial``
        
        or
        
        ``python3 setup.py install``
        
        
        Documentation
        -------------
        
        Documentation is hosted at https://pythonhosted.org/gnusocial/
        
        
        Basic usage
        -----------
        
        
        ::
        
        >>> from gnusocial import statuses
        >>> r = statuses.update('https://gnusocial.server.com', 'username', 'password', "I've just installed #pygnusocial!", source='python3')
        
        
        Development installation
        ------------------------
        
        1. Clone this repository (preferably to a virtualenv):
        
        ``git clone https://gitgud.io/dtluna/pygnusocial``
        
        2. Install needed development dependencies:
        
        ``pip install -r requirements.txt``
        
        3. Install ``gnusocial`` package in development mode:
        
        ``pip install -e .``
        
        
        Testing
        -------
        Run ``./runtests.py``
        
        The tests are situated in ``tests`` directory.
        
        Tests are written using `Pytest <http://docs.pytest.org/en/latest/>`_.
        
        Building docs
        -------------
        
        ``cd docs && make html``
        
        Docs are written using `Sphinx <http://www.sphinx-doc.org/en/stable/>`_.
        
Platform: any
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
