Metadata-Version: 2.4
Name: leprikon
Version: 4.3.2
Summary: Django CMS based IS for education
License: BSD-3-Clause
License-File: LICENSE
Author: Jakub Dorňák
Author-email: jakub.dornak@qbsoftware.cz
Requires-Python: >=3.12,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: Czech
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Education
Requires-Dist: Django (<4)
Requires-Dist: PyICU
Requires-Dist: Whoosh
Requires-Dist: certbot
Requires-Dist: certbot-nginx
Requires-Dist: django-admin-sortable2 (<2)
Requires-Dist: django-bankreader
Requires-Dist: django-cms (<4)
Requires-Dist: django-cors-headers
Requires-Dist: django-countries
Requires-Dist: django-cron
Requires-Dist: django-excel
Requires-Dist: django-filer
Requires-Dist: django-ganalytics
Requires-Dist: django-haystack
Requires-Dist: django-localflavor
Requires-Dist: django-mathfilters
Requires-Dist: django-multiselectfield
Requires-Dist: django-pays
Requires-Dist: django-qr-code
Requires-Dist: django-redis
Requires-Dist: django-staticfiles-downloader
Requires-Dist: django-user-unique-email
Requires-Dist: django-verified-email-field
Requires-Dist: djangocms-admin-style (<3.2.5)
Requires-Dist: djangocms-audio
Requires-Dist: djangocms-file
Requires-Dist: djangocms-googlemap
Requires-Dist: djangocms-link
Requires-Dist: djangocms-picture
Requires-Dist: djangocms-snippet
Requires-Dist: djangocms-style
Requires-Dist: djangocms-text-ckeditor
Requires-Dist: djangocms-video
Requires-Dist: djangorestframework
Requires-Dist: djangorestframework-camel-case
Requires-Dist: drf-spectacular
Requires-Dist: drf-spectacular-sidecar
Requires-Dist: gunicorn
Requires-Dist: html2rml
Requires-Dist: icalendar (>=6.3.1,<7.0.0)
Requires-Dist: importlib-resources
Requires-Dist: ipython
Requires-Dist: lxml
Requires-Dist: mysqlclient
Requires-Dist: psycopg2-binary
Requires-Dist: pyexcel-xlsxw
Requires-Dist: pypdf
Requires-Dist: python-dateutil
Requires-Dist: python-memcached
Requires-Dist: requests
Requires-Dist: schwifty
Requires-Dist: sentry-sdk
Requires-Dist: setuptools (<81)
Requires-Dist: social-auth-app-django
Requires-Dist: sqlparse
Requires-Dist: trml2pdf
Project-URL: Homepage, https://leprikon.cz/
Project-URL: Repository, https://github.com/leprikon-cz/leprikon
Description-Content-Type: text/x-rst

Leprikón
========

Leprikón is web information system for leisure centres and other educational organizations.

`www.leprikon.cz <https://www.leprikon.cz/>`__

`Docker image <https://hub.docker.com/r/leprikon/leprikon/>`__


Installation with pip
---------------------

.. code:: shell

    # create and enter an empty directory of your choice
    mkdir leprikon && cd leprikon

    # create and activate virtual environment
    virtualenv env
    . env/bin/activate

    # install leprikon with all the requirements
    pip install leprikon

    # create database
    leprikon migrate

    # create admin user
    leprikon createsuperuser

    # run development server
    ./manage.py runserver

