ka-uts-com 2.2.4.250502__tar.gz → 3.0.2.250508__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.
- ka_uts_com-3.0.2.250508/.coveragerc +2 -0
- ka_uts_com-3.0.2.250508/.flake8 +18 -0
- ka_uts_com-3.0.2.250508/.github-ci.yaml +19 -0
- ka_uts_com-3.0.2.250508/.gitignore +35 -0
- ka_uts_com-3.0.2.250508/.gitlab-ci.yml +8 -0
- ka_uts_com-3.0.2.250508/PKG-INFO +20 -0
- ka_uts_com-3.0.2.250508/README.html +2072 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/README.rst +13 -17
- ka_uts_com-3.0.2.250508/dist/ka_uts_com-3.0.2.250508-py3-none-any.whl +0 -0
- ka_uts_com-3.0.2.250508/git.sh +45 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com/__version__.py +1 -1
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com/com.py +2 -2
- ka_uts_com-3.0.2.250508/ka_uts_com.egg-info/PKG-INFO +20 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com.egg-info/SOURCES.txt +8 -1
- ka_uts_com-3.0.2.250508/ka_uts_com.egg-info/requires.txt +3 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/pyproject.toml +6 -6
- ka_uts_com-3.0.2.250508/requirements.txt +3 -0
- ka_uts_com-2.2.4.250502/PKG-INFO +0 -882
- ka_uts_com-2.2.4.250502/dist/ka_uts_com-2.2.4.250502-py3-none-any.whl +0 -0
- ka_uts_com-2.2.4.250502/ka_uts_com.egg-info/PKG-INFO +0 -882
- ka_uts_com-2.2.4.250502/ka_uts_com.egg-info/requires.txt +0 -3
- ka_uts_com-2.2.4.250502/requirements.txt +0 -3
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/LICENSE.txt +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/MANIFEST.in +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/classifiers.txt +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com/__init__.py +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com/app.py +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com/cfg.py +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com/decorators/dec.py +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com/exit.py +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com/py.typed +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com/timer.py +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com.egg-info/dependency_links.txt +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com.egg-info/not-zip-safe +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/ka_uts_com.egg-info/top_level.txt +0 -0
- {ka_uts_com-2.2.4.250502 → ka_uts_com-3.0.2.250508}/setup.cfg +0 -0
@@ -0,0 +1,18 @@
|
|
1
|
+
[flake8]
|
2
|
+
extend-ignore = E203
|
3
|
+
exclude =
|
4
|
+
# No need to traverse our git directory
|
5
|
+
.git,
|
6
|
+
# There's no value in checking cache directories
|
7
|
+
__pycache__,
|
8
|
+
# The conf file is mostly autogenerated, ignore it
|
9
|
+
docs/source/conf.py,
|
10
|
+
# The old directory contains Flake8 2.0
|
11
|
+
old,
|
12
|
+
# This contains our built documentation
|
13
|
+
build,
|
14
|
+
# This contains builds of flake8 that we don't want to check
|
15
|
+
dist
|
16
|
+
max-complexity = 10
|
17
|
+
# Same as Black.
|
18
|
+
max-line-length = 88
|
@@ -0,0 +1,19 @@
|
|
1
|
+
name: CI/CD
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
branches: [ main ]
|
5
|
+
jobs:
|
6
|
+
container-test-job:
|
7
|
+
runs-on:python-latest
|
8
|
+
container:
|
9
|
+
image: python:latest
|
10
|
+
env:
|
11
|
+
NODE_ENV: development
|
12
|
+
ports:
|
13
|
+
- 80
|
14
|
+
volumes:
|
15
|
+
- my_docker_volume:/volume_mount
|
16
|
+
options: --cpus 1
|
17
|
+
steps:
|
18
|
+
- name: Check for dockerenv file
|
19
|
+
run: (ls /.dockerenv && echo Found dockerenv) || (echo No dockerenv)
|
@@ -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,20 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: ka_uts_com
|
3
|
+
Version: 3.0.2.250508
|
4
|
+
Summary: Communication and CLIs Utilities
|
5
|
+
Author-email: Bernd Stroehle <bernd.stroehle@gmail.com>
|
6
|
+
Maintainer-email: Bernd Stroehle <bernd.stroehle@gmail.com>
|
7
|
+
Project-URL: Source Code, https://github.com/bs29/ka_uts_com/tree/master
|
8
|
+
Project-URL: Homepage, https://kosakya.de/
|
9
|
+
Project-URL: Documentation, https://ka-com.readthedocs.io/en/latest
|
10
|
+
Project-URL: Apache-2.0 License, https://apache.org/licenses/LICENSE-2.0
|
11
|
+
Project-URL: GPLv3 License, https://www.gnu.org/licenses/gpl-3.0.en.html
|
12
|
+
Classifier: Development Status :: 5 - Production/Stable
|
13
|
+
Classifier: Intended Audience :: Developers
|
14
|
+
Classifier: Operating System :: OS Independent
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
16
|
+
Classifier: Natural Language :: English
|
17
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
18
|
+
Requires-Python: >=3.10
|
19
|
+
Description-Content-Type: text/x-rst
|
20
|
+
License-File: LICENSE.txt
|