Metadata-Version: 2.1
Name: leprikon
Version: 2.33.4
Summary: Django CMS based IS for education
Home-page: https://leprikon.cz/
License: BSD-3-Clause
Author: Jakub Dorňák
Author-email: jakub.dornak@misli.cz
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
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.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Education
Requires-Dist: Django (<2)
Requires-Dist: PyICU (>=2.6,<3.0)
Requires-Dist: PyPDF2 (>=1.26.0,<2.0.0)
Requires-Dist: Whoosh (>=2.7.4,<3.0.0)
Requires-Dist: certbot (>=1.12.0,<2.0.0)
Requires-Dist: certbot-nginx (>=1.12.0,<2.0.0)
Requires-Dist: cmsplugin-filer (>=1.1.3,<2.0.0)
Requires-Dist: django-bankreader (<0.7)
Requires-Dist: django-cms (<3.7)
Requires-Dist: django-countries (>=7.0,<8.0)
Requires-Dist: django-cron (>=0.5.1,<0.6.0)
Requires-Dist: django-excel (>=0.0.10,<0.0.11)
Requires-Dist: django-filer (<1.6)
Requires-Dist: django-ganalytics (>=0.7.0,<0.8.0)
Requires-Dist: django-haystack (<2.8)
Requires-Dist: django-localflavor (<2)
Requires-Dist: django-mathfilters (>=1.0.0,<2.0.0)
Requires-Dist: django-multiselectfield (>=0.1.12,<0.2.0)
Requires-Dist: django-pays (>=0.1.0,<0.2.0)
Requires-Dist: django-qr-code (<1.3)
Requires-Dist: django-redis (==4.11.0)
Requires-Dist: django-staticfiles-downloader (<0.3)
Requires-Dist: django-template-admin (>=1.1.1,<2.0.0)
Requires-Dist: django-user-unique-email (>=0.1.1,<0.2.0)
Requires-Dist: django-verified-email-field (>=1.7.0,<2.0.0)
Requires-Dist: djangocms-googlemap (<1.5)
Requires-Dist: djangocms-link (<2.7)
Requires-Dist: djangocms-snippet (<2.4)
Requires-Dist: djangocms-style (<2.4)
Requires-Dist: djangocms-text-ckeditor (<4)
Requires-Dist: djangocms-video (<2.4)
Requires-Dist: gunicorn (>=20.1.0,<21.0.0)
Requires-Dist: html2rml (>=0.3.0,<0.4.0)
Requires-Dist: ipython (>=7.20.0,<8.0.0)
Requires-Dist: lxml (>=4.6.2,<5.0.0)
Requires-Dist: mysqlclient (<2.1)
Requires-Dist: psycopg2-binary (>=2.8.6,<3.0.0)
Requires-Dist: pyexcel-xlsxw (>=0.6.1,<0.7.0)
Requires-Dist: python-memcached (>=1.59,<2.0)
Requires-Dist: requests (>=2.25.1,<3.0.0)
Requires-Dist: schwifty (>=2021.5.2,<2022.0.0)
Requires-Dist: sentry-sdk (>=0.19.5,<0.20.0)
Requires-Dist: social-auth-app-django (>=4.0.0,<5.0.0)
Requires-Dist: sqlparse (>=0.4.1,<0.5.0)
Requires-Dist: trml2pdf (>=0.6,<0.7)
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

