mirror of
https://github.com/python-LimeReport/python-LimeReport.git
synced 2025-09-04 17:12:22 +03:00
chore
This commit is contained in:
parent
1c8a6a646e
commit
408a2cc1c6
@ -4,6 +4,9 @@ Python bindings for [LimeReport](https://github.com/fralx/LimeReport)
|
||||
|
||||
## Build
|
||||
|
||||
0. Setup devcontainer.
|
||||
1.
|
||||
|
||||
Default:
|
||||
|
||||
```
|
||||
|
@ -1,5 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<!--
|
||||
Copyright (C) 2022 The Qt Company Ltd.
|
||||
Copyright (C) 2023 Maxim Slipenko.
|
||||
|
||||
This file is part of the python-LimeReport library.
|
||||
|
@ -1,6 +1,63 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# Copyright (C) 2023 Maxim Slipenko.
|
||||
#
|
||||
# This file is part of the python-LimeReport library.
|
||||
#
|
||||
# The python-LimeReport library is free software; you can redistribute it and/or modify
|
||||
# it under the terms of either:
|
||||
#
|
||||
# * the GNU Lesser General Public License as published by the Free
|
||||
# Software Foundation; either version 3 of the License, or (at your
|
||||
# option) any later version.
|
||||
#
|
||||
# or
|
||||
#
|
||||
# * the GNU General Public License as published by the Free Software
|
||||
# Foundation; either version 3 of the License, or (at your option) any
|
||||
# later version.
|
||||
#
|
||||
# or both in parallel, as here.
|
||||
#
|
||||
# The python-LimeReport library 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 General Public License
|
||||
# for more details.
|
||||
#
|
||||
# You should have received copies of the GNU General Public License and the
|
||||
# GNU Lesser General Public License along with the python-LimeReport library. If not,
|
||||
# see https://www.gnu.org/licenses/.
|
||||
#
|
||||
|
||||
|
||||
LICENSE_TEXT = """
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||||
# Copyright (C) 2023 Maxim Slipenko.
|
||||
#
|
||||
# This file is part of the python-LimeReport library.
|
||||
#
|
||||
# The python-LimeReport library is free software; you can redistribute it and/or modify
|
||||
# it under the terms of either:
|
||||
#
|
||||
# * the GNU Lesser General Public License as published by the Free
|
||||
# Software Foundation; either version 3 of the License, or (at your
|
||||
# option) any later version.
|
||||
#
|
||||
# or
|
||||
#
|
||||
# * the GNU General Public License as published by the Free Software
|
||||
# Foundation; either version 3 of the License, or (at your option) any
|
||||
# later version.
|
||||
#
|
||||
# or both in parallel, as here.
|
||||
#
|
||||
# The python-LimeReport library 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 General Public License
|
||||
# for more details.
|
||||
#
|
||||
# You should have received copies of the GNU General Public License and the
|
||||
# GNU Lesser General Public License along with the python-LimeReport library. If not,
|
||||
# see https://www.gnu.org/licenses/.
|
||||
#
|
||||
"""
|
||||
|
||||
"""
|
||||
|
57
setup.py
57
setup.py
@ -1,32 +1,31 @@
|
||||
"""
|
||||
Copyright (C) 2023 Maxim Slipenko.
|
||||
|
||||
This file is part of the python-LimeReport library.
|
||||
|
||||
The python-LimeReport library is free software; you can redistribute it and/or modify
|
||||
it under the terms of either:
|
||||
|
||||
* the GNU Lesser General Public License as published by the Free
|
||||
Software Foundation; either version 3 of the License, or (at your
|
||||
option) any later version.
|
||||
|
||||
or
|
||||
|
||||
* the GNU General Public License as published by the Free Software
|
||||
Foundation; either version 3 of the License, or (at your option) any
|
||||
later version.
|
||||
|
||||
or both in parallel, as here.
|
||||
|
||||
The python-LimeReport library 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 General Public License
|
||||
for more details.
|
||||
|
||||
You should have received copies of the GNU General Public License and the
|
||||
GNU Lesser General Public License along with the python-LimeReport library. If not,
|
||||
see https://www.gnu.org/licenses/.
|
||||
"""
|
||||
# Copyright (C) 2023 Maxim Slipenko.
|
||||
#
|
||||
# This file is part of the python-LimeReport library.
|
||||
#
|
||||
# The python-LimeReport library is free software; you can redistribute it and/or modify
|
||||
# it under the terms of either:
|
||||
#
|
||||
# * the GNU Lesser General Public License as published by the Free
|
||||
# Software Foundation; either version 3 of the License, or (at your
|
||||
# option) any later version.
|
||||
#
|
||||
# or
|
||||
#
|
||||
# * the GNU General Public License as published by the Free Software
|
||||
# Foundation; either version 3 of the License, or (at your option) any
|
||||
# later version.
|
||||
#
|
||||
# or both in parallel, as here.
|
||||
#
|
||||
# The python-LimeReport library 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 General Public License
|
||||
# for more details.
|
||||
#
|
||||
# You should have received copies of the GNU General Public License and the
|
||||
# GNU Lesser General Public License along with the python-LimeReport library. If not,
|
||||
# see https://www.gnu.org/licenses/.
|
||||
#
|
||||
|
||||
import os
|
||||
import re
|
||||
|
Loading…
Reference in New Issue
Block a user