From 21d5f92a58232e99bbc5137b922c7eb5b342c2e6 Mon Sep 17 00:00:00 2001 From: Milad Date: Mon, 25 Mar 2024 10:46:51 +0100 Subject: [PATCH] update licences --- CHANGELOG.md | 1 + LICENSE | 21 +++++++++++++++++++++ README.rst | 5 +++++ 3 files changed, 27 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96fb548..627a703 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### Add * Add support for Python 3.12 +* add LGPL licence for jalali.py file ### Changed * BREAKING CHANGE: Arithmetic operations on `date`/`datetime` against an unknown type will now return `NotImplemented` instead of raising `TypeError` diff --git a/LICENSE b/LICENSE index 277b10f..a3c7e2b 100644 --- a/LICENSE +++ b/LICENSE @@ -3,3 +3,24 @@ jdatetime is (c) 2010-2018 Milad Rastian . The jdatetime module was contributed to Python as of Python 2.7 and thus was licensed under the Python license. Same license applies to all files in the jdatetime package project. + +The algorithms to convert between Jalali and Gregorian dates, are based on +FarsiWeb's jalali.c library (http://www.farsiweb.info/jalali/jalali.c). + +Copyright (C) 2001 Roozbeh Pournader +Copyright (C) 2001 Mohammad Toossi +Copyright (C) 2003-2011 Parspooyesh Fanavar (http://parspooyesh.com/) + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You can receive a copy of GNU Lesser General Public License at the +World Wide Web address . + diff --git a/README.rst b/README.rst index d296020..6913e43 100644 --- a/README.rst +++ b/README.rst @@ -3,6 +3,11 @@ jdatetime jdatetime is Jalali_ implementation of Python's datetime module +Licence +------- +This pacakge is released under dual licenses, check LICENSE file for more information. + + Status ------