threadkiller 2.2.5__tar.gz → 3.0.2__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. threadkiller-3.0.2/.containerignore +5 -0
  2. threadkiller-3.0.2/.editorconfig +26 -0
  3. threadkiller-3.0.2/.forgejo/workflows/build-container-image-v.yaml +49 -0
  4. threadkiller-3.0.2/.forgejo/workflows/build-package.yaml +57 -0
  5. threadkiller-3.0.2/.forgejo/workflows/test-package.yaml +42 -0
  6. threadkiller-3.0.2/.gitignore +170 -0
  7. threadkiller-3.0.2/.idea/.gitignore +8 -0
  8. threadkiller-3.0.2/.idea/codeStyles/Project.xml +78 -0
  9. threadkiller-3.0.2/.idea/codeStyles/codeStyleConfig.xml +5 -0
  10. threadkiller-3.0.2/.idea/discord.xml +6 -0
  11. threadkiller-3.0.2/.idea/icon.svg +30 -0
  12. threadkiller-3.0.2/.idea/inspectionProfiles/Project_Default.xml +74 -0
  13. threadkiller-3.0.2/.idea/jsonSchemas.xml +31 -0
  14. threadkiller-3.0.2/.idea/misc.xml +9 -0
  15. threadkiller-3.0.2/.idea/modules.xml +8 -0
  16. threadkiller-3.0.2/.idea/threadkiller.iml +11 -0
  17. threadkiller-3.0.2/.idea/vcs.xml +6 -0
  18. threadkiller-3.0.2/.media/icon-512.png +0 -0
  19. threadkiller-3.0.2/.media/icon.svg +30 -0
  20. threadkiller-3.0.2/.vscode/extensions.json +7 -0
  21. threadkiller-3.0.2/.vscode/settings.json +8 -0
  22. threadkiller-3.0.2/Containerfile +29 -0
  23. threadkiller-3.0.2/PKG-INFO +25 -0
  24. threadkiller-3.0.2/compose.yml +12 -0
  25. threadkiller-3.0.2/pyproject.toml +66 -0
  26. {threadkiller-2.2.5 → threadkiller-3.0.2}/threadkiller/__main__.py +9 -9
  27. threadkiller-3.0.2/threadkiller/config.py +22 -0
  28. threadkiller-3.0.2/threadkiller/handlers.py +63 -0
  29. threadkiller-3.0.2/threadkiller/strings.py +20 -0
  30. threadkiller-3.0.2/uv.lock +148 -0
  31. threadkiller-2.2.5/PKG-INFO +0 -109
  32. threadkiller-2.2.5/README.md +0 -76
  33. threadkiller-2.2.5/pyproject.toml +0 -53
  34. threadkiller-2.2.5/threadkiller/config.py +0 -41
  35. threadkiller-2.2.5/threadkiller/handlers.py +0 -66
  36. threadkiller-2.2.5/threadkiller/strings.py +0 -37
  37. {threadkiller-2.2.5 → threadkiller-3.0.2}/LICENSE.txt +0 -0
  38. {threadkiller-2.2.5 → threadkiller-3.0.2}/threadkiller/__init__.py +0 -0
@@ -0,0 +1,5 @@
1
+ *
2
+ !threadkiller
3
+ !LICENSE.txt
4
+ !pyproject.toml
5
+ !uv.lock
@@ -0,0 +1,26 @@
1
+ # https://editorconfig.org
2
+
3
+ root = true
4
+
5
+ [*]
6
+
7
+ # Enforce lf line endings
8
+ end_of_line = lf
9
+
10
+ # Enforce newline at end of files
11
+ insert_final_newline = true
12
+
13
+ # Use tabs by default
14
+ indent_style = tab
15
+
16
+ [*.py]
17
+
18
+ # Python strongly recommends the usage of 4 spaces as indentation
19
+ indent_size = 4
20
+ indent_style = space
21
+
22
+ [{*.yml,*.yaml}]
23
+
24
+ # YAML does not support tabs, and looks weird with 4 spaces
25
+ indent_size = 2
26
+ indent_style = space
@@ -0,0 +1,49 @@
1
+ %YAML 1.1
2
+ ---
3
+ name: "Build and push container image"
4
+
5
+ "on":
6
+ push:
7
+ tags:
8
+ - "v*"
9
+
10
+ jobs:
11
+ build:
12
+ name: "Build and push container image"
13
+ runs-on: default
14
+
15
+ steps:
16
+ -
17
+ name: "Set up Docker Buildx"
18
+ uses: https://github.com/docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5
19
+ -
20
+ name: "Checkout repository"
21
+ uses: https://code.forgejo.org/actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
22
+ -
23
+ name: "Determine semantic version number"
24
+ id: semver
25
+ uses: https://g.starshard.space/steffo/actions-semver@v1.1.1
26
+ with:
27
+ string: ${{ forgejo.ref_name }}
28
+ -
29
+ name: "Login to Forgejo Packages"
30
+ uses: https://github.com/docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef
31
+ with:
32
+ registry: ${{ vars.FORGE_DOMAIN_NAME }}
33
+ username: ${{ forgejo.repository_owner }}
34
+ password: ${{ secrets.FORGE_PACKAGES_TOKEN }}
35
+ -
36
+ name: "Build and push with Buildx"
37
+ uses: https://github.com/docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf
38
+ with:
39
+ file: "./Containerfile"
40
+ push: true
41
+ tags: >-
42
+ ${{ vars.FORGE_DOMAIN_NAME }}/${{ forgejo.repository_owner }}/${{ vars.CONTAINER_IMAGE_NAME }}:v${{ steps.semver.outputs.major }},
43
+ ${{ vars.FORGE_DOMAIN_NAME }}/${{ forgejo.repository_owner }}/${{ vars.CONTAINER_IMAGE_NAME }}:v${{ steps.semver.outputs.pair }},
44
+ ${{ vars.FORGE_DOMAIN_NAME }}/${{ forgejo.repository_owner }}/${{ vars.CONTAINER_IMAGE_NAME }}:v${{ steps.semver.outputs.core }},
45
+ ${{ vars.FORGE_DOMAIN_NAME }}/${{ forgejo.repository_owner }}/${{ vars.CONTAINER_IMAGE_NAME }}:v${{ steps.semver.outputs.precedence }},
46
+ ${{ vars.FORGE_DOMAIN_NAME }}/${{ forgejo.repository_owner }}/${{ vars.CONTAINER_IMAGE_NAME }}:latest,
47
+ platforms: >-
48
+ linux/amd64,
49
+ linux/arm64
@@ -0,0 +1,57 @@
1
+ %YAML 1.1
2
+ ---
3
+ name: "Build and publish package"
4
+
5
+ "on":
6
+ push:
7
+ tags:
8
+ - "v*"
9
+
10
+ jobs:
11
+ run:
12
+ name: "Build and publish package"
13
+ runs-on: default
14
+
15
+ env:
16
+ CI: "1"
17
+
18
+ steps:
19
+ -
20
+ name: "Checkout repository"
21
+ uses: https://code.forgejo.org/actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
22
+ -
23
+ name: "Setup uv"
24
+ uses: https://github.com/astral-sh/setup-uv@v10.0.1 # Immutable tag
25
+ with:
26
+ version: "0.12.3"
27
+ enable-cache: true
28
+ -
29
+ name: "Setup Python"
30
+ run: |-
31
+ uv python install
32
+ -
33
+ name: "Build package"
34
+ run: |-
35
+ uv build
36
+ -
37
+ name: "Publish to Forgejo (steffo)"
38
+ run: |-
39
+ uv publish
40
+ env:
41
+ UV_PUBLISH_INDEX: "steffo"
42
+ UV_PUBLISH_TOKEN: "${{ secrets.FORGE_PACKAGES_TOKEN }}"
43
+ UV_PUBLISH_NO_ATTESTATIONS: "true" # Forgejo does not support attestations
44
+ -
45
+ name: "Publish to Test PyPI"
46
+ run: |-
47
+ uv publish
48
+ env:
49
+ UV_PUBLISH_INDEX: "testpypi"
50
+ UV_PUBLISH_TOKEN: "${{ secrets.TESTPYPI_TOKEN }}"
51
+ -
52
+ name: "Publish to PyPI"
53
+ run: |-
54
+ uv publish
55
+ env:
56
+ UV_PUBLISH_INDEX: "pypi"
57
+ UV_PUBLISH_TOKEN: "${{ secrets.PYPI_TOKEN }}"
@@ -0,0 +1,42 @@
1
+ %YAML 1.1
2
+ ---
3
+ name: "Test the package"
4
+
5
+ "on":
6
+ push:
7
+ branches:
8
+ - "main"
9
+ pull_request:
10
+ types:
11
+ - opened
12
+ - synchronize
13
+
14
+ jobs:
15
+ test:
16
+ name: "Test the package"
17
+ runs-on: default
18
+
19
+ env:
20
+ CI: "1"
21
+
22
+ steps:
23
+ -
24
+ name: "Checkout repository"
25
+ uses: https://code.forgejo.org/actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
26
+ -
27
+ name: "Setup uv"
28
+ uses: https://github.com/astral-sh/setup-uv@v10.0.1 # Immutable tag
29
+ with:
30
+ version: "0.12.3"
31
+ enable-cache: true
32
+ -
33
+ name: "Run compileall"
34
+ run: |-
35
+ uv run python -m compileall threadkiller -f
36
+ -
37
+ name: "Upload coverage artifact"
38
+ uses: https://code.forgejo.org/forgejo/upload-artifact@cb8afe72b42edc798abfb8fcb556cf660d894245
39
+ with:
40
+ name: "Coverage"
41
+ path: .coverage
42
+ if-no-files-found: warn
@@ -0,0 +1,170 @@
1
+ # Gitignore file
2
+ # See https://git-scm.com/docs/gitignore for more details
3
+
4
+ ###################
5
+ # Project ignores #
6
+ ###################
7
+
8
+ # Add your own ignores here!
9
+
10
+ .env.local
11
+ .env.production
12
+
13
+ ##################
14
+ # Python ignores #
15
+ ##################
16
+
17
+ # From https://github.com/github/gitignore/blob/main/Python.gitignore
18
+
19
+ # Byte-compiled / optimized / DLL files
20
+ __pycache__/
21
+ *.py[cod]
22
+ *$py.class
23
+
24
+ # C extensions
25
+ *.so
26
+
27
+ # Distribution / packaging
28
+ .Python
29
+ build/
30
+ develop-eggs/
31
+ dist/
32
+ downloads/
33
+ eggs/
34
+ .eggs/
35
+ lib/
36
+ lib64/
37
+ parts/
38
+ sdist/
39
+ var/
40
+ wheels/
41
+ share/python-wheels/
42
+ *.egg-info/
43
+ .installed.cfg
44
+ *.egg
45
+ MANIFEST
46
+
47
+ # PyInstaller
48
+ # Usually these files are written by a python script from a template
49
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
50
+ *.manifest
51
+ *.spec
52
+
53
+ # Installer logs
54
+ pip-log.txt
55
+ pip-delete-this-directory.txt
56
+
57
+ # Unit test / coverage reports
58
+ htmlcov/
59
+ .tox/
60
+ .nox/
61
+ .coverage
62
+ .coverage.*
63
+ .cache
64
+ nosetests.xml
65
+ coverage.xml
66
+ *.cover
67
+ *.py,cover
68
+ .hypothesis/
69
+ .pytest_cache/
70
+ cover/
71
+
72
+ # Translations
73
+ *.mo
74
+ *.pot
75
+
76
+ # Django stuff:
77
+ *.log
78
+ local_settings.py
79
+ db.sqlite3
80
+ db.sqlite3-journal
81
+
82
+ # Flask stuff:
83
+ instance/
84
+ .webassets-cache
85
+
86
+ # Scrapy stuff:
87
+ .scrapy
88
+
89
+ # Sphinx documentation
90
+ docs/_build/
91
+
92
+ # PyBuilder
93
+ .pybuilder/
94
+ target/
95
+
96
+ # Jupyter Notebook
97
+ .ipynb_checkpoints
98
+
99
+ # IPython
100
+ profile_default/
101
+ ipython_config.py
102
+
103
+ # pyenv
104
+ # For a library or package, you might want to ignore these files since the code is
105
+ # intended to run in multiple environments; otherwise, check them in:
106
+ # .python-version
107
+
108
+ # pipenv
109
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
110
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
111
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
112
+ # install all needed dependencies.
113
+ #Pipfile.lock
114
+
115
+ # poetry
116
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
117
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
118
+ # commonly ignored for libraries.
119
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
120
+ #poetry.lock
121
+
122
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
123
+ __pypackages__/
124
+
125
+ # Celery stuff
126
+ celerybeat-schedule
127
+ celerybeat.pid
128
+
129
+ # SageMath parsed files
130
+ *.sage.py
131
+
132
+ # Environments
133
+ .env
134
+ .venv
135
+ env/
136
+ venv/
137
+ ENV/
138
+ env.bak/
139
+ venv.bak/
140
+
141
+ # Spyder project settings
142
+ .spyderproject
143
+ .spyproject
144
+
145
+ # Rope project settings
146
+ .ropeproject
147
+
148
+ # mkdocs documentation
149
+ /site
150
+
151
+ # mypy
152
+ .mypy_cache/
153
+ .dmypy.json
154
+ dmypy.json
155
+
156
+ # Pyre type checker
157
+ .pyre/
158
+
159
+ # pytype static type analyzer
160
+ .pytype/
161
+
162
+ # Cython debug symbols
163
+ cython_debug/
164
+
165
+ # PyCharm
166
+ # JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
167
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
168
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
169
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
170
+ #.idea/
@@ -0,0 +1,8 @@
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
4
+ # Datasource local storage ignored files
5
+ /dataSources/
6
+ /dataSources.local.xml
7
+ # Editor-based HTTP Client requests
8
+ /httpRequests/
@@ -0,0 +1,78 @@
1
+ <component name="ProjectCodeStyleConfiguration">
2
+ <code_scheme name="Project" version="173">
3
+ <HTMLCodeStyleSettings>
4
+ <option name="HTML_UNIFORM_INDENT" value="true" />
5
+ <option name="HTML_ATTRIBUTE_WRAP" value="0" />
6
+ <option name="HTML_TEXT_WRAP" value="0" />
7
+ <option name="HTML_ALIGN_ATTRIBUTES" value="false" />
8
+ <option name="HTML_ELEMENTS_TO_INSERT_NEW_LINE_BEFORE" value="address,article,aside,blockquote,details,dialog,dd,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,li,main,nav,ol,p,pre,section,table,ul" />
9
+ <option name="HTML_ELEMENTS_TO_REMOVE_NEW_LINE_BEFORE" value="a,abbr,acronym,b,basefont,bdo,big,br,cite,cite,code,dfn,em,font,i,img,input,kbd,label,q,s,samp,select,small,span,strike,strong,sub,sup,textarea,tt,u,var" />
10
+ <option name="HTML_DO_NOT_INDENT_CHILDREN_OF" value="" />
11
+ <option name="HTML_DONT_ADD_BREAKS_IF_INLINE_CONTENT" value="" />
12
+ <option name="HTML_ENFORCE_QUOTES" value="true" />
13
+ <option name="HTML_NEWLINE_BEFORE_FIRST_ATTRIBUTE" value="When multiline" />
14
+ <option name="HTML_NEWLINE_AFTER_LAST_ATTRIBUTE" value="When multiline" />
15
+ </HTMLCodeStyleSettings>
16
+ <JSCodeStyleSettings version="0">
17
+ <option name="USE_SEMICOLON_AFTER_STATEMENT" value="false" />
18
+ <option name="FORCE_SEMICOLON_STYLE" value="true" />
19
+ <option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
20
+ <option name="REFORMAT_C_STYLE_COMMENTS" value="true" />
21
+ <option name="FORCE_QUOTE_STYlE" value="true" />
22
+ <option name="ENFORCE_TRAILING_COMMA" value="WhenMultiline" />
23
+ <option name="VAR_DECLARATION_WRAP" value="5" />
24
+ <option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
25
+ <option name="SPACES_WITHIN_IMPORTS" value="true" />
26
+ <option name="INDENT_CHAINED_CALLS" value="false" />
27
+ </JSCodeStyleSettings>
28
+ <ScalaCodeStyleSettings>
29
+ <option name="MULTILINE_STRING_CLOSING_QUOTES_ON_NEW_LINE" value="true" />
30
+ </ScalaCodeStyleSettings>
31
+ <codeStyleSettings language="HTML">
32
+ <indentOptions>
33
+ <option name="CONTINUATION_INDENT_SIZE" value="4" />
34
+ </indentOptions>
35
+ </codeStyleSettings>
36
+ <codeStyleSettings language="JSON">
37
+ <indentOptions>
38
+ <option name="INDENT_SIZE" value="4" />
39
+ </indentOptions>
40
+ </codeStyleSettings>
41
+ <codeStyleSettings language="JavaScript">
42
+ <option name="BLANK_LINES_AFTER_IMPORTS" value="2" />
43
+ <option name="BLANK_LINES_AROUND_CLASS" value="2" />
44
+ <option name="ELSE_ON_NEW_LINE" value="true" />
45
+ <option name="CATCH_ON_NEW_LINE" value="true" />
46
+ <option name="FINALLY_ON_NEW_LINE" value="true" />
47
+ <option name="ALIGN_MULTILINE_CHAINED_METHODS" value="true" />
48
+ <option name="ALIGN_MULTILINE_TERNARY_OPERATION" value="true" />
49
+ <option name="ALIGN_MULTILINE_ARRAY_INITIALIZER_EXPRESSION" value="true" />
50
+ <option name="SPACE_BEFORE_IF_PARENTHESES" value="false" />
51
+ <option name="SPACE_BEFORE_WHILE_PARENTHESES" value="false" />
52
+ <option name="SPACE_BEFORE_FOR_PARENTHESES" value="false" />
53
+ <option name="SPACE_BEFORE_CATCH_PARENTHESES" value="false" />
54
+ <option name="SPACE_BEFORE_SWITCH_PARENTHESES" value="false" />
55
+ <option name="METHOD_PARAMETERS_WRAP" value="5" />
56
+ <option name="METHOD_PARAMETERS_LPAREN_ON_NEXT_LINE" value="true" />
57
+ <option name="METHOD_PARAMETERS_RPAREN_ON_NEXT_LINE" value="true" />
58
+ <option name="METHOD_CALL_CHAIN_WRAP" value="5" />
59
+ <option name="PARENTHESES_EXPRESSION_LPAREN_WRAP" value="true" />
60
+ <option name="PARENTHESES_EXPRESSION_RPAREN_WRAP" value="true" />
61
+ <option name="BINARY_OPERATION_WRAP" value="5" />
62
+ <option name="TERNARY_OPERATION_WRAP" value="5" />
63
+ <option name="TERNARY_OPERATION_SIGNS_ON_NEXT_LINE" value="true" />
64
+ <option name="ARRAY_INITIALIZER_WRAP" value="5" />
65
+ <option name="ARRAY_INITIALIZER_LBRACE_ON_NEXT_LINE" value="true" />
66
+ <option name="ARRAY_INITIALIZER_RBRACE_ON_NEXT_LINE" value="true" />
67
+ <option name="IF_BRACE_FORCE" value="3" />
68
+ <option name="DOWHILE_BRACE_FORCE" value="3" />
69
+ <option name="WHILE_BRACE_FORCE" value="3" />
70
+ <option name="FOR_BRACE_FORCE" value="3" />
71
+ </codeStyleSettings>
72
+ <codeStyleSettings language="LESS">
73
+ <indentOptions>
74
+ <option name="INDENT_SIZE" value="4" />
75
+ </indentOptions>
76
+ </codeStyleSettings>
77
+ </code_scheme>
78
+ </component>
@@ -0,0 +1,5 @@
1
+ <component name="ProjectCodeStyleConfiguration">
2
+ <state>
3
+ <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
4
+ </state>
5
+ </component>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="DiscordProjectSettings">
4
+ <option name="show" value="PROJECT_FILES" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg viewBox="0 0 512.0 512.0" xmlns="http://www.w3.org/2000/svg">
3
+ <svg height="100.0%" version="1.1" viewBox="0 0 512 512" width="100.0%" x="0.0%" xmlns="http://www.w3.org/2000/svg" y="0.0%">
4
+ <defs color-interpolation-filters="sRGB">
5
+ <linearGradient gradientUnits="userSpaceOnUse" id="night-gradient" x2="512" y1="512">
6
+ <stop offset="0%" stop-color="#051636"/>
7
+ <stop offset="30%" stop-color="#001953"/>
8
+ <stop offset="65%" stop-color="#001A69"/>
9
+ <stop offset="100%" stop-color="#011256"/>
10
+ </linearGradient>
11
+ </defs>
12
+ <rect class="background" fill="url(#night-gradient)" height="100%" width="100%"/>
13
+ </svg>
14
+ <svg filter="url(#emblematic-compose-shadow)" height="63.0%" preserveAspectRatio="xMidYMid meet" viewBox="0 0 512 512" width="63.0%" x="18.5%"
15
+ xmlns="http://www.w3.org/2000/svg" y="18.5%">
16
+ <!--! Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc. -->
17
+ <path
18
+ d="M205 34.8c11.5 5.1 19 16.6 19 29.2l0 64 112 0c97.2 0 176 78.8 176 176c0 113.3-81.5 163.9-100.2 174.1c-2.5 1.4-5.3 1.9-8.1 1.9c-10.9 0-19.7-8.9-19.7-19.7c0-7.5 4.3-14.4 9.8-19.5c9.4-8.8 22.2-26.4 22.2-56.7c0-53-43-96-96-96l-96 0 0 64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4z"
19
+ fill="#85C3FF"/>
20
+ <defs>
21
+ <filter color-interpolation-filters="sRGB" id="emblematic-compose-shadow">
22
+ <feFlood flood-color="#010828" flood-opacity="0.5" in="SourceGraphic" result="flood"/>
23
+ <feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="24.0"/>
24
+ <feOffset dx="-4.0" dy="8.0" in="blur" result="offset"/>
25
+ <feComposite in="flood" in2="offset" operator="in" result="shadow"/>
26
+ <feComposite in="SourceGraphic" in2="shadow" operator="over" result="image"/>
27
+ </filter>
28
+ </defs>
29
+ </svg>
30
+ </svg>
@@ -0,0 +1,74 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0">
3
+ <option name="myName" value="Project Default" />
4
+ <inspection_tool class="InconsistentLineSeparators" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
5
+ <inspection_tool class="JupyterPackageInspection" enabled="true" level="ERROR" enabled_by_default="true" />
6
+ <inspection_tool class="LessResolvedByNameOnly" enabled="true" level="WARNING" enabled_by_default="true" />
7
+ <inspection_tool class="LessUnresolvedMixin" enabled="true" level="ERROR" enabled_by_default="true" />
8
+ <inspection_tool class="LessUnresolvedVariable" enabled="true" level="ERROR" enabled_by_default="true" />
9
+ <inspection_tool class="LongLine" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
10
+ <inspection_tool class="PoetryPackageVersion" enabled="true" level="SERVER PROBLEM" enabled_by_default="true" />
11
+ <inspection_tool class="ProblematicWhitespace" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
12
+ <inspection_tool class="PyAbstractClassInspection" enabled="true" level="ERROR" enabled_by_default="true" />
13
+ <inspection_tool class="PyAttributeOutsideInitInspection" enabled="true" level="WARNING" enabled_by_default="true" />
14
+ <inspection_tool class="PyAugmentAssignmentInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
15
+ <inspection_tool class="PyBroadExceptionInspection" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
16
+ <inspection_tool class="PyDictDuplicateKeysInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
17
+ <inspection_tool class="PyDocstringTypesInspection" enabled="true" level="WARNING" enabled_by_default="true" />
18
+ <inspection_tool class="PyDunderSlotsInspection" enabled="true" level="ERROR" enabled_by_default="true" />
19
+ <inspection_tool class="PyFinalInspection" enabled="true" level="ERROR" enabled_by_default="true" />
20
+ <inspection_tool class="PyFromFutureImportInspection" enabled="true" level="ERROR" enabled_by_default="true" />
21
+ <inspection_tool class="PyGlobalUndefinedInspection" enabled="true" level="WARNING" enabled_by_default="true" />
22
+ <inspection_tool class="PyInconsistentIndentationInspection" enabled="true" level="ERROR" enabled_by_default="true" />
23
+ <inspection_tool class="PyInterpreterInspection" enabled="true" level="SERVER PROBLEM" enabled_by_default="true" />
24
+ <inspection_tool class="PyMandatoryEncodingInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
25
+ <inspection_tool class="PyMethodMayBeStaticInspection" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
26
+ <inspection_tool class="PyMissingTypeHintsInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
27
+ <inspection_tool class="PyNestedDecoratorsInspection" enabled="true" level="WARNING" enabled_by_default="true" />
28
+ <inspection_tool class="PyNoneFunctionAssignmentInspection" enabled="true" level="WARNING" enabled_by_default="true" />
29
+ <inspection_tool class="PyPackageRequirementsInspection" enabled="false" level="ERROR" enabled_by_default="false">
30
+ <option name="ignoredPackages">
31
+ <value>
32
+ <list size="0" />
33
+ </value>
34
+ </option>
35
+ </inspection_tool>
36
+ <inspection_tool class="PyPep8NamingInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
37
+ <option name="ignoredErrors">
38
+ <list>
39
+ <option value="N806" />
40
+ </list>
41
+ </option>
42
+ </inspection_tool>
43
+ <inspection_tool class="PyRelativeImportInspection" enabled="true" level="WARNING" enabled_by_default="true" />
44
+ <inspection_tool class="PyReturnFromInitInspection" enabled="true" level="ERROR" enabled_by_default="true" />
45
+ <inspection_tool class="PySetFunctionToLiteralInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
46
+ <inspection_tool class="PyStringFormatInspection" enabled="true" level="ERROR" enabled_by_default="true" />
47
+ <inspection_tool class="PyTrailingSemicolonInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
48
+ <inspection_tool class="PyUnnecessaryBackslashInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
49
+ <inspection_tool class="PyUnresolvedReferencesInspection" enabled="true" level="WARNING" enabled_by_default="true">
50
+ <option name="ignoredIdentifiers">
51
+ <list>
52
+ <option value="pydantic.main.BaseModel.__root__" />
53
+ <option value="telethon.client.telegramclient.TelegramClient.__await__" />
54
+ <option value="royalnet.engineer.pda.implementations.base.PDAImplementation.register_partial" />
55
+ <option value="royalnet.engineer.pda.implementations.base.PDAImplementation.register_partialcommand" />
56
+ <option value="royalnet.engineer.pda.implementations.base.PDAImplementation.register_conversation" />
57
+ </list>
58
+ </option>
59
+ </inspection_tool>
60
+ <inspection_tool class="RegExpAnonymousGroup" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
61
+ <inspection_tool class="RegExpEscapedMetaCharacter" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
62
+ <inspection_tool class="RegExpOctalEscape" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
63
+ <inspection_tool class="RegExpRedundantEscape" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
64
+ <inspection_tool class="RegExpRedundantNestedCharacterClass" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
65
+ <inspection_tool class="RegExpRepeatedSpace" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
66
+ <inspection_tool class="RegExpUnexpectedAnchor" enabled="true" level="ERROR" enabled_by_default="true" />
67
+ <inspection_tool class="ShellCheck" enabled="true" level="WARNING" enabled_by_default="true" />
68
+ <inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
69
+ <option name="processCode" value="true" />
70
+ <option name="processLiterals" value="true" />
71
+ <option name="processComments" value="true" />
72
+ </inspection_tool>
73
+ </profile>
74
+ </component>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="JsonSchemaMappingsProjectConfiguration">
4
+ <state>
5
+ <map>
6
+ <entry key="GitHub Workflow">
7
+ <value>
8
+ <SchemaInfo>
9
+ <option name="name" value="GitHub Workflow" />
10
+ <option name="relativePathToSchema" value="https://www.schemastore.org/github-workflow.json" />
11
+ <option name="applicationDefined" value="true" />
12
+ <option name="patterns">
13
+ <list>
14
+ <Item>
15
+ <option name="path" value=".forgejo/workflows/build-container-image-v.yaml" />
16
+ </Item>
17
+ <Item>
18
+ <option name="path" value=".forgejo/workflows/build-package.yaml" />
19
+ </Item>
20
+ <Item>
21
+ <option name="path" value=".forgejo/workflows/test-package.yaml" />
22
+ </Item>
23
+ </list>
24
+ </option>
25
+ </SchemaInfo>
26
+ </value>
27
+ </entry>
28
+ </map>
29
+ </state>
30
+ </component>
31
+ </project>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ClojureProjectResolveSettings">
4
+ <currentScheme>IDE</currentScheme>
5
+ </component>
6
+ <component name="ProjectRootManager" version="2" languageLevel="JDK_16" project-jdk-name="Poetry (threadkiller)" project-jdk-type="Python SDK">
7
+ <output url="file://$PROJECT_DIR$/out" />
8
+ </component>
9
+ </project>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/threadkiller.iml" filepath="$PROJECT_DIR$/.idea/threadkiller.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module external.system.id="pyproject.toml" type="PYTHON_MODULE" version="4">
3
+ <component name="NewModuleRootManager" inherit-compiler-output="true">
4
+ <exclude-output />
5
+ <content url="file://$MODULE_DIR$">
6
+ <excludeFolder url="file://$MODULE_DIR$/.venv" />
7
+ </content>
8
+ <orderEntry type="jdk" jdkName="~/Documents/Workspaces/steffo/threadkiller/.venv" jdkType="Python SDK" />
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ </component>
11
+ </module>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>
Binary file