ka-uts-com 1.0.0.240823__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.
Files changed (38) hide show
  1. ka_uts_com-1.0.0.240823/.coveragerc +2 -0
  2. ka_uts_com-1.0.0.240823/.flake8 +18 -0
  3. ka_uts_com-1.0.0.240823/.github-ci.yaml +19 -0
  4. ka_uts_com-1.0.0.240823/.gitignore +14 -0
  5. ka_uts_com-1.0.0.240823/.gitlab-ci.yml +8 -0
  6. ka_uts_com-1.0.0.240823/LICENSE.txt +19 -0
  7. ka_uts_com-1.0.0.240823/MANIFEST.in +15 -0
  8. ka_uts_com-1.0.0.240823/PKG-INFO +943 -0
  9. ka_uts_com-1.0.0.240823/README.html +2426 -0
  10. ka_uts_com-1.0.0.240823/README.rst +917 -0
  11. ka_uts_com-1.0.0.240823/classifiers.txt +7 -0
  12. ka_uts_com-1.0.0.240823/dist/ka_uts_com-1.0.0.240823-py3-none-any.whl +0 -0
  13. ka_uts_com-1.0.0.240823/dist/ka_uts_com-1.0.0.240823.tar.gz +0 -0
  14. ka_uts_com-1.0.0.240823/ka_uts_com/__init__.py +0 -0
  15. ka_uts_com-1.0.0.240823/ka_uts_com/__version__.py +10 -0
  16. ka_uts_com-1.0.0.240823/ka_uts_com/aeq.py +87 -0
  17. ka_uts_com-1.0.0.240823/ka_uts_com/argv.py +49 -0
  18. ka_uts_com-1.0.0.240823/ka_uts_com/com.py +222 -0
  19. ka_uts_com-1.0.0.240823/ka_uts_com/data/__init__.py +0 -0
  20. ka_uts_com-1.0.0.240823/ka_uts_com/data/log.personal.yml +93 -0
  21. ka_uts_com-1.0.0.240823/ka_uts_com/data/log.standard.yml +86 -0
  22. ka_uts_com-1.0.0.240823/ka_uts_com/date.py +15 -0
  23. ka_uts_com-1.0.0.240823/ka_uts_com/fnc.py +37 -0
  24. ka_uts_com-1.0.0.240823/ka_uts_com/ioc.py +57 -0
  25. ka_uts_com-1.0.0.240823/ka_uts_com/log.py +63 -0
  26. ka_uts_com-1.0.0.240823/ka_uts_com/pacmod.py +111 -0
  27. ka_uts_com-1.0.0.240823/ka_uts_com/py.typed +0 -0
  28. ka_uts_com-1.0.0.240823/ka_uts_com/str.py +268 -0
  29. ka_uts_com-1.0.0.240823/ka_uts_com/timer.py +72 -0
  30. ka_uts_com-1.0.0.240823/ka_uts_com.egg-info/PKG-INFO +943 -0
  31. ka_uts_com-1.0.0.240823/ka_uts_com.egg-info/SOURCES.txt +37 -0
  32. ka_uts_com-1.0.0.240823/ka_uts_com.egg-info/dependency_links.txt +1 -0
  33. ka_uts_com-1.0.0.240823/ka_uts_com.egg-info/not-zip-safe +1 -0
  34. ka_uts_com-1.0.0.240823/ka_uts_com.egg-info/requires.txt +5 -0
  35. ka_uts_com-1.0.0.240823/ka_uts_com.egg-info/top_level.txt +4 -0
  36. ka_uts_com-1.0.0.240823/pyproject.toml +201 -0
  37. ka_uts_com-1.0.0.240823/requirements.txt +5 -0
  38. ka_uts_com-1.0.0.240823/setup.cfg +25 -0
@@ -0,0 +1,2 @@
1
+ [run]
2
+ omit = ea_gut/test/*
@@ -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,14 @@
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.*
@@ -0,0 +1,8 @@
1
+ image: python:latest
2
+
3
+ test:
4
+ script:
5
+ - python -V
6
+ - pip install .
7
+ - pip install pytest-cov
8
+ - pytest ka_utg/ --cov=ka_utg --cov-report term-missing
@@ -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@gmail.com
19
+ # Maintainer
@@ -0,0 +1,15 @@
1
+ include MANIFEST.in
2
+ include LICENSE.txt
3
+ include README.rst
4
+ include setup.cfg
5
+ include requirements.txt
6
+
7
+ recursive-include * *.txt
8
+ recursive-include * *.in
9
+ recursive-include * *.md
10
+ recursive-exclude * __pycache__
11
+ recursive-exclude * *.pyc
12
+ recursive-exclude * *.pyo
13
+ recursive-exclude * *.orig
14
+
15
+ prune __pycache__*