{ "info": { "author": "Alexei Andrushievich", "author_email": "vint21h@vint21h.pp.ua", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Plugins", "Framework :: Django :: 2.2", "Framework :: Django :: 3.0", "Framework :: Django :: 3.1", "Framework :: Django :: 3.2", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: Unix", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Utilities" ], "description": ".. django-humans-txt\n.. README.rst\n\n\nA django-humans-txt documentation\n=================================\n\n|GitHub|_ |Coveralls|_ |pypi-license|_ |pypi-version|_ |pypi-python-version|_ |pypi-django-version|_ |pypi-format|_ |pypi-wheel|_ |pypi-status|_\n\n *django-humans-txt is a Django reusable application to handle humans.txt (http://humanstxt.org/)*\n\n.. contents::\n\nInstallation\n------------\n* Obtain your copy of source code from the git repository: ``$ git clone https://github.com/vint21h/django-humans-txt.git``. Or download the latest release from https://github.com/vint21h/django-humans-txt/tags/.\n* Run ``$ python ./setup.py install`` from the repository source tree or the unpacked archive. Or use pip: ``$ pip install django-humans-txt``.\n\nConfiguration\n-------------\n* Add ``\"humans_txt\"`` to ``settings.INSTALLED_APPS``:\n\n.. code-block:: python\n\n # settings.py\n\n INSTALLED_APPS += [\n \"humans_txt\",\n ]\n\n* Add ``\"humans_txt\"`` to your URLs definitions:\n\n.. code-block:: python\n\n # urls.py\n\n from django.urls import re_path\n\n\n urlpatterns += [\n re_path(r\"^humans\\.txt\", include(\"humans_txt.urls\")),\n ]\n\n* Run ``$ python ./manage.py migrate`` in your project folder to apply app migrations.\n\nSettings\n--------\n``HUMANS_TXT_BANNER``\n Contains a banner that placed at the start of humans.txt response. Defaults to ``\"\"``.\n``HUMANS_TXT_LAST_UPDATE``\n Contains project last update date. Defaults to ``None``.\n``HUMANS_TXT_LANGUAGES``\n Contains list of site supported languages. Defaults to ``None``.\n\nUsage\n-----\n* Include ``\"humans_txt/includes/humans_txt_meta.html\"`` in your base template rel meta tag to ``
`` HTML tag:\n\n.. code-block:: django\n\n {# base.html #}\n\n \n {% include \"humans_txt/includes/humans_txt_meta.html\" %}\n \n\n* Just fill Django humans.txt models instances in your admin in your taste.\n\nContributing\n------------\n1. `Fork it