Mercurial > hgrepos > Python > apps > py-cutils
annotate cutils/__init__.py @ 332:5b98810fe367
treesum: attribute comment for "LS"
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Fri, 28 Mar 2025 15:23:09 +0100 |
| parents | 48430941c18c |
| children | 6994ed768db5 |
| rev | line source |
|---|---|
|
114
9e61c5cf76a2
coding declaration for the cutils package (__init__.py)
Franz Glasner <fzglas.hg@dom66.de>
parents:
107
diff
changeset
|
1 # -*- coding: utf-8 -*- |
|
323
48430941c18c
Adopt copyright and license wordings from https://reuse.software/faq/.
Franz Glasner <fzglas.hg@dom66.de>
parents:
318
diff
changeset
|
2 # :- |
|
48430941c18c
Adopt copyright and license wordings from https://reuse.software/faq/.
Franz Glasner <fzglas.hg@dom66.de>
parents:
318
diff
changeset
|
3 # SPDX-FileCopyrightText: © 2020-2025 Franz Glasner |
|
48430941c18c
Adopt copyright and license wordings from https://reuse.software/faq/.
Franz Glasner <fzglas.hg@dom66.de>
parents:
318
diff
changeset
|
4 # SPDX-License-Identifier: BSD-3-Clause |
|
48430941c18c
Adopt copyright and license wordings from https://reuse.software/faq/.
Franz Glasner <fzglas.hg@dom66.de>
parents:
318
diff
changeset
|
5 # :- |
|
30
ffcce6062bee
Put the version number info the optinal common module _cutils.py
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff
changeset
|
6 r""" |
|
ffcce6062bee
Put the version number info the optinal common module _cutils.py
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff
changeset
|
7 :Author: Franz Glasner |
|
323
48430941c18c
Adopt copyright and license wordings from https://reuse.software/faq/.
Franz Glasner <fzglas.hg@dom66.de>
parents:
318
diff
changeset
|
8 :Copyright: © 2020-2025 Franz Glasner |
|
30
ffcce6062bee
Put the version number info the optinal common module _cutils.py
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff
changeset
|
9 :License: BSD 3-Clause "New" or "Revised" License. |
|
73
c3268f4e752f
Adjust all license notes to (a) more literally comply with the BSD3 templates and to the style guide
Franz Glasner <fzglas.hg@dom66.de>
parents:
72
diff
changeset
|
10 See :ref:`LICENSE.txt <license>` for details. |
|
c3268f4e752f
Adjust all license notes to (a) more literally comply with the BSD3 templates and to the style guide
Franz Glasner <fzglas.hg@dom66.de>
parents:
72
diff
changeset
|
11 If you cannot find LICENSE.txt see |
|
323
48430941c18c
Adopt copyright and license wordings from https://reuse.software/faq/.
Franz Glasner <fzglas.hg@dom66.de>
parents:
318
diff
changeset
|
12 <https://opensource.org/licenses/BSD-3-Clause>. |
|
30
ffcce6062bee
Put the version number info the optinal common module _cutils.py
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff
changeset
|
13 :ID: @(#) $HGid$ |
|
ffcce6062bee
Put the version number info the optinal common module _cutils.py
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff
changeset
|
14 |
|
ffcce6062bee
Put the version number info the optinal common module _cutils.py
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff
changeset
|
15 """ |
|
ffcce6062bee
Put the version number info the optinal common module _cutils.py
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff
changeset
|
16 |
| 318 | 17 __version__ = "0.7" |
|
30
ffcce6062bee
Put the version number info the optinal common module _cutils.py
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff
changeset
|
18 |
|
72
ae2df602beb4
Make shasum.py and dos2unix sub-modules to the new "cutils" package
Franz Glasner <fzglas.hg@dom66.de>
parents:
62
diff
changeset
|
19 __revision__ = "|VCSRevision|" |
|
ae2df602beb4
Make shasum.py and dos2unix sub-modules to the new "cutils" package
Franz Glasner <fzglas.hg@dom66.de>
parents:
62
diff
changeset
|
20 __date__ = "|VCSJustDate|" |
|
ae2df602beb4
Make shasum.py and dos2unix sub-modules to the new "cutils" package
Franz Glasner <fzglas.hg@dom66.de>
parents:
62
diff
changeset
|
21 |
|
30
ffcce6062bee
Put the version number info the optinal common module _cutils.py
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff
changeset
|
22 __all__ = ["__version__"] |
