Metadata-Version: 2.1
Name: nobinobi-staff
Version: 0.1.6.12
Summary: 
Home-page: https://github.com/python-poetry/poetry
License: AGPL-3.0-or-later
Keywords: nobinobi-staff
Author: Florian Alu
Author-email: fla@grapps.fr
Requires-Python: >=3.7.0,<4.0.0
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django :: 3.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: datetimerange (>=2.3.0,<3.0.0)
Requires-Dist: django (>=3.0,<4.0)
Requires-Dist: django-admin-rangefilter (>=0.13.2,<0.14.0)
Requires-Dist: django-bootstrap-datepicker-plus (>=5.0.0,<6.0.0)
Requires-Dist: django-extensions (>=3.2.3,<4.0.0)
Requires-Dist: django-import-export (>=3.0.0,<4.0.0)
Requires-Dist: djangorestframework (>=3.0,<4.0)
Requires-Dist: djangorestframework-datatables (>=0.7.2,<0.8.0)
Requires-Dist: nobinobi-core (>=0.1.4.9,<0.2.0.0)
Requires-Dist: pillow (>=9.0.0,<10.0.0)
Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
Project-URL: Documentation, https://python-poetry.org/docs/
Project-URL: Repository, https://github.com/python-poetry/poetry
Description-Content-Type: text/x-rst

=============================
Nobinobi Staff
=============================

.. image:: https://badge.fury.io/py/nobinobi-staff.svg
    :target: https://badge.fury.io/py/nobinobi-staff

.. image:: https://travis-ci.com/prolibre-ch/nobinobi-staff.svg?branch=master
    :target: https://travis-ci.com/prolibre-ch/nobinobi-staff

.. image:: https://codecov.io/gh/prolibre-ch/nobinobi-staff/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/prolibre-ch/nobinobi-staff

.. image:: https://pyup.io/repos/github/prolibre-ch/nobinobi-staff/shield.svg
     :target: https://pyup.io/repos/github/prolibre-ch/nobinobi-staff/
     :alt: Updates

.. image:: https://pyup.io/repos/github/prolibre-ch/nobinobi-staff/python-3-shield.svg
     :target: https://pyup.io/repos/github/prolibre-ch/nobinobi-staff/
     :alt: Python 3

Application staff for nobinobi

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

The full documentation is at https://nobinobi-staff.readthedocs.io.

Quickstart
----------

Install Nobinobi Staff::

    pip install nobinobi-staff

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'nobinobi_staff.apps.NobinobiStaffConfig',
        ...
    )

Add Nobinobi Staff's URL patterns:

.. code-block:: python

    from nobinobi_staff import urls as nobinobi_staff_urls


    urlpatterns = [
        ...
        path('', include(nobinobi_staff_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

