Metadata-Version: 2.1
Name: django-generic-links
Version: 0.7.0
Summary: Simple and generic application for Django projects to attach and handle links for any object
Home-page: https://github.com/matagus/django-generic-links
Author: Matias Agustin Mendez
Author-email: matagus@gmail.com
License: BSD
Keywords: generic_links
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: django-model-utils (>=2.0)

=============================
django-generic-links
=============================

Simple and generic application for Django projects to attach and handle links for any object

Documentation
-------------

The full documentation is at https://matagus.alameda.dev/django-generic-links/.

Quickstart
----------

Install django-generic-links::

    pip install generic_links

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'generic_links.apps.GenericLinksConfig',
        ...
    )

Add django-generic-links's URL patterns:

.. code-block:: python

    from generic_links import urls as generic_links_urls


    urlpatterns = [
        ...
        url(r'^', include(generic_links_urls)),
        ...
    ]

Features
--------

* TODO

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox


Development commands
---------------------

::

    pip install -r requirements_dev.txt
    invoke -l


Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.5.0 (2020-09-06)
++++++++++++++++++

* First release on PyPI.


