dt-extensions-sdk 1.1.12__tar.gz → 1.1.13__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 (80) hide show
  1. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/.github/workflows/gh-pages-docs.yml +75 -75
  2. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/.gitignore +169 -169
  3. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/LICENSE.txt +9 -9
  4. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/PKG-INFO +2 -2
  5. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/README.md +97 -97
  6. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/api/events/event_severity.rst +13 -13
  7. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/api/events/event_type.rst +14 -14
  8. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/api/events/index.rst +9 -9
  9. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/api/extension.rst +5 -5
  10. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/api/metrics/index.rst +9 -9
  11. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/api/metrics/metric.rst +19 -19
  12. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/api/metrics/metric_type.rst +18 -18
  13. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/cli/assemble.rst +4 -4
  14. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/cli/build.rst +4 -4
  15. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/cli/create.rst +4 -4
  16. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/cli/gencerts.rst +4 -4
  17. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/cli/help.rst +4 -4
  18. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/cli/run.rst +4 -4
  19. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/cli/sign.rst +4 -4
  20. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/cli/upload.rst +4 -4
  21. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/cli/wheel.rst +4 -4
  22. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/conf.py +98 -98
  23. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/guides/extension_structure.rst +283 -283
  24. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/guides/installation.rst +38 -38
  25. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/guides/migration.rst +159 -159
  26. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/index.rst +300 -300
  27. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/requirements.txt +2 -2
  28. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/__about__.py +5 -5
  29. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/__init__.py +27 -27
  30. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/__init__.py +5 -5
  31. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/create/__init__.py +1 -1
  32. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/create/create.py +76 -76
  33. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/create/extension_template/.gitignore.template +160 -160
  34. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/create/extension_template/README.md.template +33 -33
  35. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/create/extension_template/activation.json.template +15 -15
  36. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/create/extension_template/extension/activationSchema.json.template +118 -118
  37. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/create/extension_template/extension/extension.yaml.template +16 -16
  38. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/create/extension_template/extension_name/__main__.py.template +43 -43
  39. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/create/extension_template/setup.py.template +12 -12
  40. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/main.py +428 -428
  41. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/schema.py +129 -129
  42. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/__init__.py +3 -3
  43. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/activation.py +43 -43
  44. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/callback.py +141 -141
  45. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/communication.py +469 -469
  46. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/event.py +19 -19
  47. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/extension.py +1037 -1037
  48. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/helper.py +191 -191
  49. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/metric.py +118 -118
  50. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/runtime.py +67 -67
  51. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/vendor/mureq/LICENSE +13 -13
  52. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/vendor/mureq/mureq.py +447 -447
  53. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/pyproject.toml +211 -211
  54. dt_extensions_sdk-1.1.13/test.py +38 -0
  55. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/__init__.py +3 -3
  56. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/cli/test_dt_sdk.py +105 -105
  57. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/cli/test_templates.py +19 -19
  58. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/cli/test_types.py +54 -54
  59. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/sdk/test_activation.py +61 -61
  60. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/sdk/test_callback.py +66 -66
  61. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/sdk/test_communication.py +35 -35
  62. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/sdk/test_extension.py +783 -783
  63. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/sdk/test_metric.py +42 -42
  64. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/sdk/test_runtime_properties.py +22 -22
  65. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/sdk/test_status.py +95 -95
  66. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/.github/workflows/publish.yml +0 -0
  67. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/_static/dt-sdk-header.png +0 -0
  68. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/_static/dt-sdk-logo.png +0 -0
  69. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/_static/favicon.ico +0 -0
  70. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/_static/img/migrate-01-new-extension.png +0 -0
  71. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/_static/img/migrate-02-type.png +0 -0
  72. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/_static/img/migrate-03-import.png +0 -0
  73. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/_static/img/migrate-04-import-remote.png +0 -0
  74. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/_static/img/migrate-05-activation.png +0 -0
  75. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/docs/_static/img/migrate-06-activation-config.png +0 -0
  76. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/cli/create/extension_template/extension_name/__init__.py.template +0 -0
  77. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/vendor/__init__.py +0 -0
  78. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/dynatrace_extension/sdk/vendor/mureq/__init__.py +0 -0
  79. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/cli/__init__.py +0 -0
  80. {dt_extensions_sdk-1.1.12 → dt_extensions_sdk-1.1.13}/tests/sdk/__init__.py +0 -0
@@ -1,76 +1,76 @@
1
- name: Update Docs
2
- on:
3
- push:
4
- branches:
5
- - main
6
- workflow_dispatch:
7
-
8
- jobs:
9
- build-docs:
10
- runs-on: ubuntu-latest
11
-
12
- steps:
13
- - uses: actions/checkout@v2
14
-
15
- - uses: actions/setup-python@v2
16
- with:
17
- python-version: "3.10"
18
-
19
- - name: Install hatch
20
- run: |
21
- pip install hatch
22
-
23
- - name: Install dependencies
24
- run: |
25
- hatch env create
26
-
27
- - name: Build the docs
28
- run: |
29
- hatch run docs:build
30
-
31
- - name: Cache built docs as artifact
32
- uses: actions/upload-artifact@v2
33
- with:
34
- name: rendered-docs
35
- path: |
36
- docs/_build/**
37
-
38
- upload-docs:
39
- runs-on: ubuntu-latest
40
- needs:
41
- - build-docs
42
-
43
- steps:
44
- - name: Download built docs as cached artifact
45
- uses: actions/download-artifact@v2
46
- with:
47
- name: rendered-docs
48
-
49
- - name: Change Git username for gh-pages branch
50
- run: |
51
- git config --global user.name "${GITHUB_ACTOR}"
52
- git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
53
-
54
- - name: Initialize gh-pages branch
55
- run: |
56
- git init
57
- git remote add deploy "https://token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git"
58
- git checkout -b gh-pages
59
-
60
- - name: Add README disclaimer
61
- run: |
62
- echo '# GitHub Pages for `dt-extensions-sdk`' > README.md
63
- echo "" >> README.md
64
- echo "The contents of this branch are built using GitHub Actions workflow and Sphinx." >> README.md
65
- echo "" >> README.md
66
- echo "*commit ${GITHUB_SHA:0:6}*" >> README.md
67
-
68
- - name: Add .nojekyll file to prevent the contents from being built by GitHub pages second time
69
- run: |
70
- touch .nojekyll
71
-
72
- - name: Push everything to gh-pages branch on GitHub
73
- run: |
74
- git add .
75
- git commit -m "📝 Rebuilt docs: commit ${GITHUB_SHA:0:6}"
1
+ name: Update Docs
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ build-docs:
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+
15
+ - uses: actions/setup-python@v2
16
+ with:
17
+ python-version: "3.10"
18
+
19
+ - name: Install hatch
20
+ run: |
21
+ pip install hatch
22
+
23
+ - name: Install dependencies
24
+ run: |
25
+ hatch env create
26
+
27
+ - name: Build the docs
28
+ run: |
29
+ hatch run docs:build
30
+
31
+ - name: Cache built docs as artifact
32
+ uses: actions/upload-artifact@v2
33
+ with:
34
+ name: rendered-docs
35
+ path: |
36
+ docs/_build/**
37
+
38
+ upload-docs:
39
+ runs-on: ubuntu-latest
40
+ needs:
41
+ - build-docs
42
+
43
+ steps:
44
+ - name: Download built docs as cached artifact
45
+ uses: actions/download-artifact@v2
46
+ with:
47
+ name: rendered-docs
48
+
49
+ - name: Change Git username for gh-pages branch
50
+ run: |
51
+ git config --global user.name "${GITHUB_ACTOR}"
52
+ git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
53
+
54
+ - name: Initialize gh-pages branch
55
+ run: |
56
+ git init
57
+ git remote add deploy "https://token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git"
58
+ git checkout -b gh-pages
59
+
60
+ - name: Add README disclaimer
61
+ run: |
62
+ echo '# GitHub Pages for `dt-extensions-sdk`' > README.md
63
+ echo "" >> README.md
64
+ echo "The contents of this branch are built using GitHub Actions workflow and Sphinx." >> README.md
65
+ echo "" >> README.md
66
+ echo "*commit ${GITHUB_SHA:0:6}*" >> README.md
67
+
68
+ - name: Add .nojekyll file to prevent the contents from being built by GitHub pages second time
69
+ run: |
70
+ touch .nojekyll
71
+
72
+ - name: Push everything to gh-pages branch on GitHub
73
+ run: |
74
+ git add .
75
+ git commit -m "📝 Rebuilt docs: commit ${GITHUB_SHA:0:6}"
76
76
  git push deploy gh-pages --force
@@ -1,170 +1,170 @@
1
- # Docs
2
- docs/_build
3
- docs/my_extension
4
-
5
- # Byte-compiled / optimized / DLL files
6
- __pycache__/
7
- *.py[cod]
8
- *$py.class
9
-
10
- # C extensions
11
- *.so
12
-
13
- # Distribution / packaging
14
- .Python
15
- build/
16
- develop-eggs/
17
- dist/
18
- downloads/
19
- eggs/
20
- .eggs/
21
- lib/
22
- lib64/
23
- parts/
24
- sdist/
25
- var/
26
- wheels/
27
- share/python-wheels/
28
- *.egg-info/
29
- .installed.cfg
30
- *.egg
31
- MANIFEST
32
-
33
- # PyInstaller
34
- # Usually these files are written by a python script from a template
35
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
36
- *.manifest
37
- *.spec
38
-
39
- # Installer logs
40
- pip-log.txt
41
- pip-delete-this-directory.txt
42
-
43
- # Unit test / coverage reports
44
- htmlcov/
45
- .tox/
46
- .nox/
47
- .coverage
48
- .coverage.*
49
- .cache
50
- nosetests.xml
51
- coverage.xml
52
- *.cover
53
- *.py,cover
54
- .hypothesis/
55
- .pytest_cache/
56
- cover/
57
-
58
- # Translations
59
- *.mo
60
- *.pot
61
-
62
- # Django stuff:
63
- *.log
64
- local_settings.py
65
- db.sqlite3
66
- db.sqlite3-journal
67
-
68
- # Flask stuff:
69
- instance/
70
- .webassets-cache
71
-
72
- # Scrapy stuff:
73
- .scrapy
74
-
75
- # Sphinx documentation
76
- docs/_build/
77
-
78
- # PyBuilder
79
- .pybuilder/
80
- target/
81
-
82
- # Jupyter Notebook
83
- .ipynb_checkpoints
84
-
85
- # IPython
86
- profile_default/
87
- ipython_config.py
88
-
89
- # pyenv
90
- # For a library or package, you might want to ignore these files since the code is
91
- # intended to run in multiple environments; otherwise, check them in:
92
- .python-version
93
-
94
- # pipenv
95
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
97
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
98
- # install all needed dependencies.
99
- #Pipfile.lock
100
-
101
- # poetry
102
- # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
103
- # This is especially recommended for binary packages to ensure reproducibility, and is more
104
- # commonly ignored for libraries.
105
- # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
106
- #poetry.lock
107
-
108
- # pdm
109
- # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
110
- #pdm.lock
111
- # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
112
- # in version control.
113
- # https://pdm.fming.dev/#use-with-ide
114
- .pdm.toml
115
-
116
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
117
- __pypackages__/
118
-
119
- # Celery stuff
120
- celerybeat-schedule
121
- celerybeat.pid
122
-
123
- # SageMath parsed files
124
- *.sage.py
125
-
126
- # Environments
127
- .env
128
- .venv
129
- env/
130
- venv/
131
- ENV/
132
- env.bak/
133
- venv.bak/
134
-
135
- # Spyder project settings
136
- .spyderproject
137
- .spyproject
138
-
139
- # Rope project settings
140
- .ropeproject
141
-
142
- # mkdocs documentation
143
- /site
144
-
145
- # mypy
146
- .mypy_cache/
147
- .dmypy.json
148
- dmypy.json
149
-
150
- # Pyre type checker
151
- .pyre/
152
-
153
- # pytype static type analyzer
154
- .pytype/
155
-
156
- # Cython debug symbols
157
- cython_debug/
158
-
159
- # PyCharm
160
- # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
161
- # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
162
- # and can be added to the global gitignore or merged into this file. For a more nuclear
163
- # option (not recommended) you can uncomment the following to ignore the entire idea folder.
164
- .idea/
165
-
166
- test_temp/
167
-
168
- # Thumbnails
169
- .DS_Store
1
+ # Docs
2
+ docs/_build
3
+ docs/my_extension
4
+
5
+ # Byte-compiled / optimized / DLL files
6
+ __pycache__/
7
+ *.py[cod]
8
+ *$py.class
9
+
10
+ # C extensions
11
+ *.so
12
+
13
+ # Distribution / packaging
14
+ .Python
15
+ build/
16
+ develop-eggs/
17
+ dist/
18
+ downloads/
19
+ eggs/
20
+ .eggs/
21
+ lib/
22
+ lib64/
23
+ parts/
24
+ sdist/
25
+ var/
26
+ wheels/
27
+ share/python-wheels/
28
+ *.egg-info/
29
+ .installed.cfg
30
+ *.egg
31
+ MANIFEST
32
+
33
+ # PyInstaller
34
+ # Usually these files are written by a python script from a template
35
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
36
+ *.manifest
37
+ *.spec
38
+
39
+ # Installer logs
40
+ pip-log.txt
41
+ pip-delete-this-directory.txt
42
+
43
+ # Unit test / coverage reports
44
+ htmlcov/
45
+ .tox/
46
+ .nox/
47
+ .coverage
48
+ .coverage.*
49
+ .cache
50
+ nosetests.xml
51
+ coverage.xml
52
+ *.cover
53
+ *.py,cover
54
+ .hypothesis/
55
+ .pytest_cache/
56
+ cover/
57
+
58
+ # Translations
59
+ *.mo
60
+ *.pot
61
+
62
+ # Django stuff:
63
+ *.log
64
+ local_settings.py
65
+ db.sqlite3
66
+ db.sqlite3-journal
67
+
68
+ # Flask stuff:
69
+ instance/
70
+ .webassets-cache
71
+
72
+ # Scrapy stuff:
73
+ .scrapy
74
+
75
+ # Sphinx documentation
76
+ docs/_build/
77
+
78
+ # PyBuilder
79
+ .pybuilder/
80
+ target/
81
+
82
+ # Jupyter Notebook
83
+ .ipynb_checkpoints
84
+
85
+ # IPython
86
+ profile_default/
87
+ ipython_config.py
88
+
89
+ # pyenv
90
+ # For a library or package, you might want to ignore these files since the code is
91
+ # intended to run in multiple environments; otherwise, check them in:
92
+ .python-version
93
+
94
+ # pipenv
95
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
97
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
98
+ # install all needed dependencies.
99
+ #Pipfile.lock
100
+
101
+ # poetry
102
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
103
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
104
+ # commonly ignored for libraries.
105
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
106
+ #poetry.lock
107
+
108
+ # pdm
109
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
110
+ #pdm.lock
111
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
112
+ # in version control.
113
+ # https://pdm.fming.dev/#use-with-ide
114
+ .pdm.toml
115
+
116
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
117
+ __pypackages__/
118
+
119
+ # Celery stuff
120
+ celerybeat-schedule
121
+ celerybeat.pid
122
+
123
+ # SageMath parsed files
124
+ *.sage.py
125
+
126
+ # Environments
127
+ .env
128
+ .venv
129
+ env/
130
+ venv/
131
+ ENV/
132
+ env.bak/
133
+ venv.bak/
134
+
135
+ # Spyder project settings
136
+ .spyderproject
137
+ .spyproject
138
+
139
+ # Rope project settings
140
+ .ropeproject
141
+
142
+ # mkdocs documentation
143
+ /site
144
+
145
+ # mypy
146
+ .mypy_cache/
147
+ .dmypy.json
148
+ dmypy.json
149
+
150
+ # Pyre type checker
151
+ .pyre/
152
+
153
+ # pytype static type analyzer
154
+ .pytype/
155
+
156
+ # Cython debug symbols
157
+ cython_debug/
158
+
159
+ # PyCharm
160
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
161
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
162
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
163
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
164
+ .idea/
165
+
166
+ test_temp/
167
+
168
+ # Thumbnails
169
+ .DS_Store
170
170
  Thumb.db
@@ -1,9 +1,9 @@
1
- MIT License
2
-
3
- Copyright (c) 2023-present Dynatrace LLC
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
-
7
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
-
9
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2023-present Dynatrace LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dt-extensions-sdk
3
- Version: 1.1.12
3
+ Version: 1.1.13
4
4
  Project-URL: Documentation, https://github.com/dynatrace-extensions/dt-extensions-python-sdk#readme
5
5
  Project-URL: Issues, https://github.com/dynatrace-extensions/dt-extensions-python-sdk/issues
6
6
  Project-URL: Source, https://github.com/dynatrace-extensions/dt-extensions-python-sdk
@@ -18,7 +18,7 @@ Requires-Python: >=3.10
18
18
  Provides-Extra: cli
19
19
  Requires-Dist: dt-cli>=1.6.13; extra == 'cli'
20
20
  Requires-Dist: pyyaml; extra == 'cli'
21
- Requires-Dist: typer; extra == 'cli'
21
+ Requires-Dist: typer[all]; extra == 'cli'
22
22
  Description-Content-Type: text/markdown
23
23
 
24
24
  # Dynatrace Extensions Python SDK