ut-wdp 1.0.0.20250816__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,35 @@
1
+ # ignore cache
2
+ **/__pycache__
3
+
4
+ # ignore VIM: Swap-files
5
+ [._]*.*.s[a-w][a-z]
6
+ [._]*.s[a-w][a-z]
7
+ [._]s[a-w][a-z]
8
+
9
+ *.egg-info
10
+ .DS_Store
11
+ .coverage
12
+
13
+ build**
14
+ build.*
15
+
16
+ # Spyder project settings
17
+ .spyderproject
18
+ .spyproject
19
+
20
+ # Rope project settings
21
+ .ropeproject
22
+
23
+ # mkdocs documentation
24
+ /site
25
+
26
+ # mypy
27
+ **/.mypy_cache
28
+ .dmypy.json
29
+ dmypy.json
30
+
31
+ # Pyre type checker
32
+ .pyre/
33
+
34
+ # IDE stuff
35
+ .vscode
@@ -0,0 +1,19 @@
1
+ #
2
+ # Copyright (c) 2022 Kosakya, GmbH. All rights reserved.
3
+ #
4
+ # This program is free software: you can redistribute it and/or modify
5
+ # it under the terms of the GNU General Public License as published by
6
+ # the Free Software Foundation, either version 3 of the License, or
7
+ # (at your option) any later version.
8
+ #
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more detail.
13
+ #
14
+ # You should have received a copy of the GNU General Public License
15
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
+ #
17
+ # Person: Role: Email:
18
+ # Bernd Stroehle Author bernd.stroehle@kosakya.de
19
+ # Maintainer
@@ -0,0 +1,15 @@
1
+ include MANIFEST.in
2
+ include LICENSE.txt
3
+ include README.md
4
+ include setup.py
5
+ include requirements.txt
6
+
7
+ recursive-include * *.txt
8
+ recursive-include * *.in
9
+ recursive-include * *.md
10
+
11
+ recursive-exclude * __pycache__
12
+ recursive-exclude * *.pyc
13
+ recursive-exclude * *.pyo
14
+ recursive-exclude * *.orig
15
+ prune __pycache__*