commit 29e8d28

Artur Manuel  ·  2026-07-18 08:47:59 +0000 UTC
parent 29e8d28
Initial commit
3 files changed,  +411, -0
+218, -0
  1@@ -0,0 +1,218 @@
  2+# ---> Python
  3+# Byte-compiled / optimized / DLL files
  4+__pycache__/
  5+*.py[codz]
  6+*$py.class
  7+
  8+# C extensions
  9+*.so
 10+
 11+# Distribution / packaging
 12+.Python
 13+build/
 14+develop-eggs/
 15+dist/
 16+downloads/
 17+eggs/
 18+.eggs/
 19+lib/
 20+lib64/
 21+parts/
 22+sdist/
 23+var/
 24+wheels/
 25+share/python-wheels/
 26+*.egg-info/
 27+.installed.cfg
 28+*.egg
 29+MANIFEST
 30+
 31+# PyInstaller
 32+#   Usually these files are written by a python script from a template
 33+#   before PyInstaller builds the exe, so as to inject date/other infos into it.
 34+*.manifest
 35+*.spec
 36+
 37+# Installer logs
 38+pip-log.txt
 39+pip-delete-this-directory.txt
 40+
 41+# Unit test / coverage reports
 42+htmlcov/
 43+.tox/
 44+.nox/
 45+.coverage
 46+.coverage.*
 47+.cache
 48+nosetests.xml
 49+coverage.xml
 50+*.cover
 51+*.py.cover
 52+.hypothesis/
 53+.pytest_cache/
 54+cover/
 55+
 56+# Translations
 57+*.mo
 58+*.pot
 59+
 60+# Django stuff:
 61+*.log
 62+local_settings.py
 63+db.sqlite3
 64+db.sqlite3-journal
 65+
 66+# Flask stuff:
 67+instance/
 68+.webassets-cache
 69+
 70+# Scrapy stuff:
 71+.scrapy
 72+
 73+# Sphinx documentation
 74+docs/_build/
 75+
 76+# PyBuilder
 77+.pybuilder/
 78+target/
 79+
 80+# Jupyter Notebook
 81+.ipynb_checkpoints
 82+
 83+# IPython
 84+profile_default/
 85+ipython_config.py
 86+
 87+# pyenv
 88+#   For a library or package, you might want to ignore these files since the code is
 89+#   intended to run in multiple environments; otherwise, check them in:
 90+# .python-version
 91+
 92+# pipenv
 93+#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
 94+#   However, in case of collaboration, if having platform-specific dependencies or dependencies
 95+#   having no cross-platform support, pipenv may install dependencies that don't work, or not
 96+#   install all needed dependencies.
 97+# Pipfile.lock
 98+
 99+# UV
100+#   Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
101+#   This is especially recommended for binary packages to ensure reproducibility, and is more
102+#   commonly ignored for libraries.
103+# uv.lock
104+
105+# poetry
106+#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
107+#   This is especially recommended for binary packages to ensure reproducibility, and is more
108+#   commonly ignored for libraries.
109+#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
110+# poetry.lock
111+# poetry.toml
112+
113+# pdm
114+#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
115+#   pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
116+#   https://pdm-project.org/en/latest/usage/project/#working-with-version-control
117+# pdm.lock
118+# pdm.toml
119+.pdm-python
120+.pdm-build/
121+
122+# pixi
123+#   Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
124+# pixi.lock
125+#   Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
126+#   in the .venv directory. It is recommended not to include this directory in version control.
127+.pixi
128+
129+# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
130+__pypackages__/
131+
132+# Celery stuff
133+celerybeat-schedule
134+celerybeat.pid
135+
136+# Redis
137+*.rdb
138+*.aof
139+*.pid
140+
141+# RabbitMQ
142+mnesia/
143+rabbitmq/
144+rabbitmq-data/
145+
146+# ActiveMQ
147+activemq-data/
148+
149+# SageMath parsed files
150+*.sage.py
151+
152+# Environments
153+.env
154+.envrc
155+.venv
156+env/
157+venv/
158+ENV/
159+env.bak/
160+venv.bak/
161+
162+# Spyder project settings
163+.spyderproject
164+.spyproject
165+
166+# Rope project settings
167+.ropeproject
168+
169+# mkdocs documentation
170+/site
171+
172+# mypy
173+.mypy_cache/
174+.dmypy.json
175+dmypy.json
176+
177+# Pyre type checker
178+.pyre/
179+
180+# pytype static type analyzer
181+.pytype/
182+
183+# Cython debug symbols
184+cython_debug/
185+
186+# PyCharm
187+#   JetBrains specific template is maintained in a separate JetBrains.gitignore that can
188+#   be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
189+#   and can be added to the global gitignore or merged into this file.  For a more nuclear
190+#   option (not recommended) you can uncomment the following to ignore the entire idea folder.
191+# .idea/
192+
193+# Abstra
194+#   Abstra is an AI-powered process automation framework.
195+#   Ignore directories containing user credentials, local state, and settings.
196+#   Learn more at https://abstra.io/docs
197+.abstra/
198+
199+# Visual Studio Code
200+#   Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore 
201+#   that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
202+#   and can be added to the global gitignore or merged into this file. However, if you prefer, 
203+#   you could uncomment the following to ignore the entire vscode folder
204+# .vscode/
205+
206+# Ruff stuff:
207+.ruff_cache/
208+
209+# PyPI configuration file
210+.pypirc
211+
212+# Marimo
213+marimo/_static/
214+marimo/_lsp/
215+__marimo__/
216+
217+# Streamlit
218+.streamlit/secrets.toml
219+
+190, -0
  1@@ -0,0 +1,190 @@
  2+EUROPEAN UNION PUBLIC LICENCE v. 1.2
  3+EUPL © the European Union 2007, 2016
  4+
  5+This European Union Public Licence (the ‘EUPL’) applies to the Work (as defined below) which is provided under the
  6+terms of this Licence. Any use of the Work, other than as authorised under this Licence is prohibited (to the extent such
  7+use is covered by a right of the copyright holder of the Work).
  8+The Work is provided under the terms of this Licence when the Licensor (as defined below) has placed the following
  9+notice immediately following the copyright notice for the Work:
 10+                          Licensed under the EUPL
 11+or has expressed by any other means his willingness to license under the EUPL.
 12+
 13+1.Definitions
 14+In this Licence, the following terms have the following meaning:
 15+— ‘The Licence’:this Licence.
 16+— ‘The Original Work’:the work or software distributed or communicated by the Licensor under this Licence, available
 17+as Source Code and also as Executable Code as the case may be.
 18+— ‘Derivative Works’:the works or software that could be created by the Licensee, based upon the Original Work or
 19+modifications thereof. This Licence does not define the extent of modification or dependence on the Original Work
 20+required in order to classify a work as a Derivative Work; this extent is determined by copyright law applicable in
 21+the country mentioned in Article 15.
 22+— ‘The Work’:the Original Work or its Derivative Works.
 23+— ‘The Source Code’:the human-readable form of the Work which is the most convenient for people to study and
 24+modify.
 25+— ‘The Executable Code’:any code which has generally been compiled and which is meant to be interpreted by
 26+a computer as a program.
 27+— ‘The Licensor’:the natural or legal person that distributes or communicates the Work under the Licence.
 28+— ‘Contributor(s)’:any natural or legal person who modifies the Work under the Licence, or otherwise contributes to
 29+the creation of a Derivative Work.
 30+— ‘The Licensee’ or ‘You’:any natural or legal person who makes any usage of the Work under the terms of the
 31+Licence.
 32+— ‘Distribution’ or ‘Communication’:any act of selling, giving, lending, renting, distributing, communicating,
 33+transmitting, or otherwise making available, online or offline, copies of the Work or providing access to its essential
 34+functionalities at the disposal of any other natural or legal person.
 35+
 36+2.Scope of the rights granted by the Licence
 37+The Licensor hereby grants You a worldwide, royalty-free, non-exclusive, sublicensable licence to do the following, for
 38+the duration of copyright vested in the Original Work:
 39+— use the Work in any circumstance and for all usage,
 40+— reproduce the Work,
 41+— modify the Work, and make Derivative Works based upon the Work,
 42+— communicate to the public, including the right to make available or display the Work or copies thereof to the public
 43+and perform publicly, as the case may be, the Work,
 44+— distribute the Work or copies thereof,
 45+— lend and rent the Work or copies thereof,
 46+— sublicense rights in the Work or copies thereof.
 47+Those rights can be exercised on any media, supports and formats, whether now known or later invented, as far as the
 48+applicable law permits so.
 49+In the countries where moral rights apply, the Licensor waives his right to exercise his moral right to the extent allowed
 50+by law in order to make effective the licence of the economic rights here above listed.
 51+The Licensor grants to the Licensee royalty-free, non-exclusive usage rights to any patents held by the Licensor, to the
 52+extent necessary to make use of the rights granted on the Work under this Licence.
 53+
 54+3.Communication of the Source Code
 55+The Licensor may provide the Work either in its Source Code form, or as Executable Code. If the Work is provided as
 56+Executable Code, the Licensor provides in addition a machine-readable copy of the Source Code of the Work along with
 57+each copy of the Work that the Licensor distributes or indicates, in a notice following the copyright notice attached to
 58+the Work, a repository where the Source Code is easily and freely accessible for as long as the Licensor continues to
 59+distribute or communicate the Work.
 60+
 61+4.Limitations on copyright
 62+Nothing in this Licence is intended to deprive the Licensee of the benefits from any exception or limitation to the
 63+exclusive rights of the rights owners in the Work, of the exhaustion of those rights or of other applicable limitations
 64+thereto.
 65+
 66+5.Obligations of the Licensee
 67+The grant of the rights mentioned above is subject to some restrictions and obligations imposed on the Licensee. Those
 68+obligations are the following:
 69+
 70+Attribution right: The Licensee shall keep intact all copyright, patent or trademarks notices and all notices that refer to
 71+the Licence and to the disclaimer of warranties. The Licensee must include a copy of such notices and a copy of the
 72+Licence with every copy of the Work he/she distributes or communicates. The Licensee must cause any Derivative Work
 73+to carry prominent notices stating that the Work has been modified and the date of modification.
 74+
 75+Copyleft clause: If the Licensee distributes or communicates copies of the Original Works or Derivative Works, this
 76+Distribution or Communication will be done under the terms of this Licence or of a later version of this Licence unless
 77+the Original Work is expressly distributed only under this version of the Licence — for example by communicating
 78+‘EUPL v. 1.2 only’. The Licensee (becoming Licensor) cannot offer or impose any additional terms or conditions on the
 79+Work or Derivative Work that alter or restrict the terms of the Licence.
 80+
 81+Compatibility clause: If the Licensee Distributes or Communicates Derivative Works or copies thereof based upon both
 82+the Work and another work licensed under a Compatible Licence, this Distribution or Communication can be done
 83+under the terms of this Compatible Licence. For the sake of this clause, ‘Compatible Licence’ refers to the licences listed
 84+in the appendix attached to this Licence. Should the Licensee's obligations under the Compatible Licence conflict with
 85+his/her obligations under this Licence, the obligations of the Compatible Licence shall prevail.
 86+
 87+Provision of Source Code: When distributing or communicating copies of the Work, the Licensee will provide
 88+a machine-readable copy of the Source Code or indicate a repository where this Source will be easily and freely available
 89+for as long as the Licensee continues to distribute or communicate the Work.
 90+Legal Protection: This Licence does not grant permission to use the trade names, trademarks, service marks, or names
 91+of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and
 92+reproducing the content of the copyright notice.
 93+
 94+6.Chain of Authorship
 95+The original Licensor warrants that the copyright in the Original Work granted hereunder is owned by him/her or
 96+licensed to him/her and that he/she has the power and authority to grant the Licence.
 97+Each Contributor warrants that the copyright in the modifications he/she brings to the Work are owned by him/her or
 98+licensed to him/her and that he/she has the power and authority to grant the Licence.
 99+Each time You accept the Licence, the original Licensor and subsequent Contributors grant You a licence to their contributions
100+to the Work, under the terms of this Licence.
101+
102+7.Disclaimer of Warranty
103+The Work is a work in progress, which is continuously improved by numerous Contributors. It is not a finished work
104+and may therefore contain defects or ‘bugs’ inherent to this type of development.
105+For the above reason, the Work is provided under the Licence on an ‘as is’ basis and without warranties of any kind
106+concerning the Work, including without limitation merchantability, fitness for a particular purpose, absence of defects or
107+errors, accuracy, non-infringement of intellectual property rights other than copyright as stated in Article 6 of this
108+Licence.
109+This disclaimer of warranty is an essential part of the Licence and a condition for the grant of any rights to the Work.
110+
111+8.Disclaimer of Liability
112+Except in the cases of wilful misconduct or damages directly caused to natural persons, the Licensor will in no event be
113+liable for any direct or indirect, material or moral, damages of any kind, arising out of the Licence or of the use of the
114+Work, including without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, loss
115+of data or any commercial damage, even if the Licensor has been advised of the possibility of such damage. However,
116+the Licensor will be liable under statutory product liability laws as far such laws apply to the Work.
117+
118+9.Additional agreements
119+While distributing the Work, You may choose to conclude an additional agreement, defining obligations or services
120+consistent with this Licence. However, if accepting obligations, You may act only on your own behalf and on your sole
121+responsibility, not on behalf of the original Licensor or any other Contributor, and only if You agree to indemnify,
122+defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against such Contributor by
123+the fact You have accepted any warranty or additional liability.
124+
125+10.Acceptance of the Licence
126+The provisions of this Licence can be accepted by clicking on an icon ‘I agree’ placed under the bottom of a window
127+displaying the text of this Licence or by affirming consent in any other similar way, in accordance with the rules of
128+applicable law. Clicking on that icon indicates your clear and irrevocable acceptance of this Licence and all of its terms
129+and conditions.
130+Similarly, you irrevocably accept this Licence and all of its terms and conditions by exercising any rights granted to You
131+by Article 2 of this Licence, such as the use of the Work, the creation by You of a Derivative Work or the Distribution
132+or Communication by You of the Work or copies thereof.
133+
134+11.Information to the public
135+In case of any Distribution or Communication of the Work by means of electronic communication by You (for example,
136+by offering to download the Work from a remote location) the distribution channel or media (for example, a website)
137+must at least provide to the public the information requested by the applicable law regarding the Licensor, the Licence
138+and the way it may be accessible, concluded, stored and reproduced by the Licensee.
139+
140+12.Termination of the Licence
141+The Licence and the rights granted hereunder will terminate automatically upon any breach by the Licensee of the terms
142+of the Licence.
143+Such a termination will not terminate the licences of any person who has received the Work from the Licensee under
144+the Licence, provided such persons remain in full compliance with the Licence.
145+
146+13.Miscellaneous
147+Without prejudice of Article 9 above, the Licence represents the complete agreement between the Parties as to the
148+Work.
149+If any provision of the Licence is invalid or unenforceable under applicable law, this will not affect the validity or
150+enforceability of the Licence as a whole. Such provision will be construed or reformed so as necessary to make it valid
151+and enforceable.
152+The European Commission may publish other linguistic versions or new versions of this Licence or updated versions of
153+the Appendix, so far this is required and reasonable, without reducing the scope of the rights granted by the Licence.
154+New versions of the Licence will be published with a unique version number.
155+All linguistic versions of this Licence, approved by the European Commission, have identical value. Parties can take
156+advantage of the linguistic version of their choice.
157+
158+14.Jurisdiction
159+Without prejudice to specific agreement between parties,
160+— any litigation resulting from the interpretation of this License, arising between the European Union institutions,
161+bodies, offices or agencies, as a Licensor, and any Licensee, will be subject to the jurisdiction of the Court of Justice
162+of the European Union, as laid down in article 272 of the Treaty on the Functioning of the European Union,
163+— any litigation arising between other parties and resulting from the interpretation of this License, will be subject to
164+the exclusive jurisdiction of the competent court where the Licensor resides or conducts its primary business.
165+
166+15.Applicable Law
167+Without prejudice to specific agreement between parties,
168+— this Licence shall be governed by the law of the European Union Member State where the Licensor has his seat,
169+resides or has his registered office,
170+— this licence shall be governed by Belgian law if the Licensor has no seat, residence or registered office inside
171+a European Union Member State.
172+
173+
174+                                                         Appendix
175+
176+‘Compatible Licences’ according to Article 5 EUPL are:
177+— GNU General Public License (GPL) v. 2, v. 3
178+— GNU Affero General Public License (AGPL) v. 3
179+— Open Software License (OSL) v. 2.1, v. 3.0
180+— Eclipse Public License (EPL) v. 1.0
181+— CeCILL v. 2.0, v. 2.1
182+— Mozilla Public Licence (MPL) v. 2
183+— GNU Lesser General Public Licence (LGPL) v. 2.1, v. 3
184+— Creative Commons Attribution-ShareAlike v. 3.0 Unported (CC BY-SA 3.0) for works other than software
185+— European Union Public Licence (EUPL) v. 1.1, v. 1.2
186+— Québec Free and Open-Source Licence — Reciprocity (LiLiQ-R) or Strong Reciprocity (LiLiQ-R+).
187+
188+The European Commission may update this Appendix to later versions of the above licences without producing
189+a new version of the EUPL, as long as they provide the rights granted in Article 2 of this Licence and protect the
190+covered Source Code from exclusive appropriation.
191+All other changes or additions to this Appendix require the production of a new EUPL version.
+3, -0
1@@ -0,0 +1,3 @@
2+# gtm
3+
4+Gemini Template Machine