=============================
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.
Raw data
{
"_id": null,
"home_page": "https://github.com/prolibre-ch/nobinobi-core",
"name": "nobinobi-core",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "nobinobi-core",
"author": "Florian Alu",
"author_email": "alu@prolibre.com",
"download_url": "https://files.pythonhosted.org/packages/03/38/8635eca9a831288b4965587f5c105a45f3b969e4b8e55bd55123f2d00fe4/nobinobi-core-0.1.4.9.tar.gz",
"platform": null,
"description": "=============================\nNobinobi Core\n=============================\n\n.. image:: https://badge.fury.io/py/nobinobi-core.svg\n :target: https://badge.fury.io/py/nobinobi-core\n\n.. image:: https://travis-ci.org/prolibre-ch/nobinobi-core.svg?branch=master\n :target: https://travis-ci.org/prolibre-ch/nobinobi-core\n\n.. image:: https://codecov.io/gh/prolibre-ch/nobinobi-core/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/prolibre-ch/nobinobi-core\n\n.. image:: https://pyup.io/repos/github/prolibre-ch/nobinobi-core/shield.svg\n :target: https://pyup.io/repos/github/prolibre-ch/nobinobi-core/\n :alt: Updates\n\n.. image:: https://pyup.io/repos/github/prolibre-ch/nobinobi-core/python-3-shield.svg\n :target: https://pyup.io/repos/github/prolibre-ch/nobinobi-core/\n :alt: Python 3\n\nCore for application Nobinobi\n\nDocumentation\n-------------\n\nThe full documentation is at https://nobinobi-core.readthedocs.io.\n\nQuickstart\n----------\n\nInstall Nobinobi Core::\n\n pip install nobinobi-core\n\nAdd it to your `INSTALLED_APPS`:\n\n.. code-block:: python\n\n INSTALLED_APPS = (\n ...\n 'nobinobi_core.apps.NobinobiCoreConfig',\n ...\n )\n\nAdd Nobinobi Core's URL patterns:\n\n.. code-block:: python\n\n from nobinobi_core import urls as nobinobi_core_urls\n\n\n urlpatterns = [\n ...\n path('', include(nobinobi_core_urls)),\n ...\n ]\n\nFeatures\n--------\n\n* TODO\n\nRunning Tests\n-------------\n\nDoes the code actually work?\n\n::\n\n source <YOURVIRTUALENV>/bin/activate\n (myenv) $ pip install tox\n (myenv) $ tox\n\n\nDevelopment commands\n---------------------\n\n::\n\n pip install -r requirements_dev.txt\n invoke -l\n\n\nCredits\n-------\n\nTools used in rendering this package:\n\n* Cookiecutter_\n* `cookiecutter-djangopackage`_\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage\n\n\n\n\nHistory\n-------\n\n0.1.4.9 (2023-11-29)\n++++++++++++++++++++++\n\n* 7f61bc5 - fux bug with new crispy_forms\n* update requirements\n\n0.1.4.8 (2023-06-15)\n++++++++++++++++++++++\n\n* 0e0b9c2 - Fix requirements\n* 5d60e13 - Remove pipfile\n\n0.1.4.7 (2023-06-12)\n++++++++++++++++++++++\n\n* 5c74e84 - Update for new cripsy form version\n* Update requirements\n\n0.1.4.6 (2021-09-16)\n++++++++++++++++++++++\n\n* 5c6aace - Fix bug when add holiday but not same name but exist\n\n0.1.4.5 (2021-09-16)\n++++++++++++++++++++++\n\n* f1a0bfd - Add system to select year for holiday change system for create holiday\n\n0.1.4.4 (2021-09-16)\n++++++++++++++++++++++\n\n* 7da006a - fix error import in view for admin\n\n0.1.4.3 (2021-09-14)\n++++++++++++++++++++++\n\n* Update requirements\n* dfcaaa6 - add mixins to block user not connected and update context for compatibility\n\n0.1.4.2 (2021-07-20)\n++++++++++++++++++++++\n\n* Update requirements\n* 518f8e3 - Fix for new django version\n* 93cba01 - Add tracker to Holiday and OrganisationClosure\n\n0.1.4.1 (2021-06-07)\n++++++++++++++++++++\n\n* Update requirements\n* Update django for security fix\n\n0.1.4 (2021-04-12)\n++++++++++++++++++\n\n* Update requirements\n\n0.1.3 (2020-10-12)\n++++++++++++++++++\n\n* Fix bug in migrate\n* Add traduction FR in package\n\n0.1.2 (2020-10-07)\n++++++++++++++++++\n\n* Fix test for use\n\n0.1.1 (2020-10-06)\n++++++++++++++++++\n\n* Add organisation & Organisation closure\n* Restruct package for better comprehension\n* Add tests\n\n0.1.0 (2020-10-06)\n++++++++++++++++++\n\n* First release on PyPI.\n",
"bugtrack_url": null,
"license": "",
"summary": "Core for application Nobinobi",
"version": "0.1.4.9",
"project_urls": {
"Homepage": "https://github.com/prolibre-ch/nobinobi-core"
},
"split_keywords": [
"nobinobi-core"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a501ea0f499c745e2c3da3ba2fd790a55bbc7f54ba955c6eee1f4e8d7e364de5",
"md5": "f82541c4d382269fa8f51c62816221d4",
"sha256": "15bc92014c426659209d87b50868e223af4025444706f7495737935bf644c66a"
},
"downloads": -1,
"filename": "nobinobi_core-0.1.4.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f82541c4d382269fa8f51c62816221d4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 139927,
"upload_time": "2023-11-29T01:23:05",
"upload_time_iso_8601": "2023-11-29T01:23:05.982468Z",
"url": "https://files.pythonhosted.org/packages/a5/01/ea0f499c745e2c3da3ba2fd790a55bbc7f54ba955c6eee1f4e8d7e364de5/nobinobi_core-0.1.4.9-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03388635eca9a831288b4965587f5c105a45f3b969e4b8e55bd55123f2d00fe4",
"md5": "4a67f1065353813874b434638d428f01",
"sha256": "8ea990132a16991fdfd26d5111742731d0c185d4f8933b42f0c333579a823cf6"
},
"downloads": -1,
"filename": "nobinobi-core-0.1.4.9.tar.gz",
"has_sig": false,
"md5_digest": "4a67f1065353813874b434638d428f01",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 119210,
"upload_time": "2023-11-29T01:23:09",
"upload_time_iso_8601": "2023-11-29T01:23:09.991589Z",
"url": "https://files.pythonhosted.org/packages/03/38/8635eca9a831288b4965587f5c105a45f3b969e4b8e55bd55123f2d00fe4/nobinobi-core-0.1.4.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-11-29 01:23:09",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "prolibre-ch",
"github_project": "nobinobi-core",
"travis_ci": true,
"coveralls": true,
"github_actions": false,
"requirements": [],
"tox": true,
"lcname": "nobinobi-core"
}