Metadata-Version: 2.1
Name: scal
Version: 2.1.0
Summary: LaTeX generation of school year calendars
Home-page: http://framagit.org/spalax/scal
Author: Louis Paternault
Author-email: spalax@gresille.org
License: GPLv3 or any later version
Project-URL: Documentation, http://scal.readthedocs.io
Project-URL: Source, https://framagit.org/spalax/scal
Project-URL: Tracker, https://framagit.org/spalax/scal/issues
Keywords: calendar latex school tikz
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Text Processing :: Markup :: LaTeX
Requires-Python: <4,>=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE
License-File: AUTHORS

scal 📅 School year calendar generator
======================================

I use this program about once a year to print a one-page school-year
calendar. But it can be used to represent any calendar.

It is heavily inspired by the simple yet powerful Robert Krause's `calendar <http://www.texample.net/tikz/examples/a-calender-for-doublesided-din-a4/>`_, itself using the complex yet powerful Till Tantau's `TikZ <http://www.ctan.org/pkg/pgf>`_ LaTeX package.

Examples:

- French school year:

  - 2022-2023:
    `zone A <https://framagit.org/spalax/scal/raw/main/doc/examples/fr_20222023_A.pdf>`__ (`source <https://framagit.org/spalax/scal/blob/main/doc/examples/fr_20222023_A.scl>`__),
    `zone B <https://framagit.org/spalax/scal/raw/main/doc/examples/fr_20222023_B.pdf>`__ (`source <https://framagit.org/spalax/scal/blob/main/doc/examples/fr_20222023_B.scl>`__),
    `zone C <https://framagit.org/spalax/scal/raw/main/doc/examples/fr_20222023_C.pdf>`__ (`source <https://framagit.org/spalax/scal/blob/main/doc/examples/fr_20222023_C.scl>`__),

- Weekly planners:

  - 2022-2023:
    `French <https://framagit.org/spalax/scal/raw/main/doc/examples/weekly-fr-2223.pdf>`__ (`source <https://framagit.org/spalax/scal/raw/main/doc/examples/weekly-fr-2223.scl>`__),
    `English <https://framagit.org/spalax/scal/raw/main/doc/examples/weekly-en-2223.pdf>`__ (`source <https://framagit.org/spalax/scal/raw/main/doc/examples/weekly-en-2223.scl>`__)
  - 2023-2024:
    `French <https://framagit.org/spalax/scal/raw/main/doc/examples/weekly-fr-2324.pdf>`__ (`source <https://framagit.org/spalax/scal/raw/main/doc/examples/weekly-fr-2324.scl>`__),
    `English <https://framagit.org/spalax/scal/raw/main/doc/examples/weekly-en-2324.pdf>`__ (`source <https://framagit.org/spalax/scal/raw/main/doc/examples/weekly-en-2324.scl>`__)

What's new?
-----------

See `changelog <https://git.framasoft.org/spalax/scal/blob/main/CHANGELOG.md>`_.

Download and install
--------------------

See the end of list for a (quick and dirty) Debian package.

* Non-Python dependencies.
  This program produces LuaLaTeX code, but does not compile it. So, LaTeX is not
  needed to run this program. However, to compile the generated code, you will
  need a working LaTeX installation, with ``lualatex``, and LuaLaTeX packages
  `geometry <http://www.ctan.org/pkg/geometry>`_,
  `babel <http://www.ctan.org/pkg/babel>`_,
  `tikz <http://www.ctan.org/pkg/pgf>`_,
  `fontspec <http://www.ctan.org/pkg/fontspec>`_,
  and `translator` (provided by the `beamer <http://www.ctan.org/pkg/beamer>`_ package).
  Those are provided by `TeXLive <https://www.tug.org/texlive/>`_ on GNU/Linux, `MiKTeX <http://miktex.org/>`_ on Windows, and `MacTeX <https://tug.org/mactex/>`_ on MacOS.

* From sources:

  * Download: https://pypi.python.org/pypi/scal
  * Install (in a `virtualenv`, if you do not want to mess with your distribution installation system)::

        python3 setup.py install

* From pip::

    pip install scal

* Quick and dirty Debian (and Ubuntu?) package

  This requires `stdeb <https://github.com/astraw/stdeb>`_ to be installed::

      python3 setup.py --command-packages=stdeb.command bdist_deb
      sudo dpkg -i deb_dist/scal-<VERSION>_all.deb

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

* The compiled documentation is available on `readthedocs <http://scal.readthedocs.io>`_

* To compile it from source, download and run::

      cd doc && make html

Developpers
-----------

A partially supported `autoscl <https://framagit.org/spalax/scal/blob/main/bin/autoscl>`_ script is available in the `bin` directory. It can automatically download holiday dates from the internet, and generate the relevant `.scl` file. See `autoscl --help` for more information.


