Metadata-Version: 2.1
Name: nobinobi-core
Version: 0.1.4.9
Summary: Core for application Nobinobi
Home-page: https://github.com/prolibre-ch/nobinobi-core
Author: Florian Alu
Author-email: alu@prolibre.com
Keywords: nobinobi-core
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django :: 3.1
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.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: django (>=3.2.19)
Requires-Dist: django-model-utils (>=4.1.1)
Requires-Dist: arrow (>=1.1.1)
Requires-Dist: django-crispy-forms (>=2.0)
Requires-Dist: crispy-bootstrap5 (>=0.7)

=============================
Nobinobi Core
=============================

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

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

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

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

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

Core for application Nobinobi

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

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

Quickstart
----------

Install Nobinobi Core::

    pip install nobinobi-core

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'nobinobi_core.apps.NobinobiCoreConfig',
        ...
    )

Add Nobinobi Core's URL patterns:

.. code-block:: python

    from nobinobi_core import urls as nobinobi_core_urls


    urlpatterns = [
        ...
        path('', include(nobinobi_core_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.1.4.9 (2023-11-29)
++++++++++++++++++++++

* 7f61bc5 - fux bug with new crispy_forms
* update requirements

0.1.4.8 (2023-06-15)
++++++++++++++++++++++

* 0e0b9c2 - Fix requirements
* 5d60e13 - Remove pipfile

0.1.4.7 (2023-06-12)
++++++++++++++++++++++

* 5c74e84 - Update for new cripsy form version
* Update requirements

0.1.4.6 (2021-09-16)
++++++++++++++++++++++

* 5c6aace - Fix bug when add holiday but not same name but exist

0.1.4.5 (2021-09-16)
++++++++++++++++++++++

* f1a0bfd - Add system to select year for holiday change system for create holiday

0.1.4.4 (2021-09-16)
++++++++++++++++++++++

* 7da006a - fix error import in view for admin

0.1.4.3 (2021-09-14)
++++++++++++++++++++++

* Update requirements
* dfcaaa6 - add mixins to block user not connected and update context for compatibility

0.1.4.2 (2021-07-20)
++++++++++++++++++++++

* Update requirements
* 518f8e3 - Fix for new django version
* 93cba01 - Add tracker to Holiday and OrganisationClosure

0.1.4.1 (2021-06-07)
++++++++++++++++++++

* Update requirements
* Update django for security fix

0.1.4 (2021-04-12)
++++++++++++++++++

* Update requirements

0.1.3 (2020-10-12)
++++++++++++++++++

* Fix bug in migrate
* Add traduction FR in package

0.1.2 (2020-10-07)
++++++++++++++++++

* Fix test for use

0.1.1 (2020-10-06)
++++++++++++++++++

* Add organisation & Organisation closure
* Restruct package for better comprehension
* Add tests

0.1.0 (2020-10-06)
++++++++++++++++++

* First release on PyPI.
