stackit-cdn 2.3.0__tar.gz → 2.4.0__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 (97) hide show
  1. stackit_cdn-2.4.0/.gitignore +267 -0
  2. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/PKG-INFO +10 -11
  3. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/pyproject.toml +48 -36
  4. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/__init__.py +1 -1
  5. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/api/default_api.py +68 -67
  6. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/api_client.py +23 -10
  7. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/configuration.py +1 -1
  8. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/exceptions.py +2 -2
  9. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/__init__.py +1 -2
  10. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/bucket_backend.py +1 -1
  11. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/bucket_backend_create.py +1 -1
  12. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/bucket_backend_patch.py +1 -1
  13. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/bucket_credentials.py +1 -1
  14. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/config.py +1 -1
  15. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/config_backend.py +1 -1
  16. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/config_patch.py +1 -1
  17. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/config_patch_backend.py +1 -1
  18. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/create_distribution_payload.py +1 -1
  19. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/create_distribution_payload_backend.py +1 -1
  20. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/create_distribution_response.py +1 -1
  21. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/custom_domain.py +4 -4
  22. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/delete_custom_domain_response.py +1 -1
  23. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/delete_distribution_response.py +1 -1
  24. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/distribution.py +7 -7
  25. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/distribution_logs_record.py +1 -1
  26. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/distribution_statistics_record.py +1 -1
  27. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/distribution_statistics_record_entry.py +1 -1
  28. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/distribution_statistics_record_regions.py +1 -1
  29. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/distribution_waf.py +10 -10
  30. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/domain.py +14 -5
  31. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/domain_status.py +1 -1
  32. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/error_details.py +1 -1
  33. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/find_cache_paths_response.py +4 -4
  34. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/find_cache_paths_response_entry.py +1 -1
  35. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/generic_json_response.py +4 -4
  36. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_cache_info_response.py +4 -4
  37. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_cache_info_response_history_entry.py +1 -1
  38. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_custom_domain_custom_certificate.py +20 -4
  39. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_custom_domain_managed_certificate.py +1 -1
  40. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_custom_domain_response.py +1 -1
  41. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_custom_domain_response_certificate.py +1 -1
  42. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_distribution_response.py +1 -1
  43. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_logs_response.py +4 -4
  44. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_logs_search_filters_response.py +1 -1
  45. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_logs_search_filters_response_datacenter_block.py +16 -16
  46. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_logs_search_filters_response_datacenter_block_item.py +1 -1
  47. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/get_statistics_response.py +4 -4
  48. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/http_backend.py +1 -1
  49. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/http_backend_create.py +1 -1
  50. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/http_backend_patch.py +1 -1
  51. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/list_distributions_response.py +4 -4
  52. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/list_waf_collections_response.py +4 -4
  53. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/loki_log_sink.py +1 -1
  54. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/loki_log_sink_create.py +1 -1
  55. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/loki_log_sink_credentials.py +1 -1
  56. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/loki_log_sink_patch.py +1 -1
  57. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/match_condition.py +1 -1
  58. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/matcher.py +1 -1
  59. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/optimizer.py +1 -1
  60. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/optimizer_patch.py +1 -1
  61. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/patch_distribution_payload.py +1 -1
  62. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/patch_distribution_response.py +1 -1
  63. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/purge_cache_payload.py +1 -1
  64. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/put_custom_domain_custom_certificate.py +20 -4
  65. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/put_custom_domain_managed_certificate.py +1 -1
  66. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/put_custom_domain_payload.py +1 -1
  67. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/put_custom_domain_payload_certificate.py +1 -1
  68. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/put_custom_domain_response.py +1 -1
  69. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/put_custom_domain_response_certificate.py +1 -1
  70. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/redirect_config.py +4 -4
  71. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/redirect_rule.py +4 -4
  72. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/region.py +1 -1
  73. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/status_error.py +1 -1
  74. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_config.py +1 -1
  75. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_config_patch.py +1 -1
  76. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_mode.py +1 -1
  77. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_paranoia_level.py +1 -1
  78. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_rule.py +1 -1
  79. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_rule_action.py +1 -1
  80. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_rule_collection.py +4 -4
  81. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_rule_group.py +4 -4
  82. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_status_rule_block.py +1 -1
  83. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_status_rule_block_reason.py +1 -1
  84. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_status_rule_block_reason_directly_defined.py +1 -1
  85. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_status_rule_block_reason_inherited_from_collection.py +1 -1
  86. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_status_rule_block_reason_inherited_from_group.py +1 -1
  87. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_status_rule_block_reason_invalid_waf_type.py +1 -1
  88. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_status_rule_block_reason_never_defined.py +1 -1
  89. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_type.py +1 -1
  90. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/models/waf_violation.py +1 -1
  91. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/rest.py +20 -4
  92. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/LICENSE.md +0 -0
  93. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/NOTICE.txt +0 -0
  94. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/README.md +0 -0
  95. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/api/__init__.py +0 -0
  96. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/api_response.py +0 -0
  97. {stackit_cdn-2.3.0 → stackit_cdn-2.4.0}/src/stackit/cdn/py.typed +0 -0
@@ -0,0 +1,267 @@
1
+ ### VisualStudioCode template
2
+ .vscode/*
3
+ !.vscode/settings.json
4
+ !.vscode/tasks.json
5
+ !.vscode/launch.json
6
+ !.vscode/extensions.json
7
+ !.vscode/*.code-snippets
8
+
9
+ # Local History for Visual Studio Code
10
+ .history/
11
+
12
+ # Built Visual Studio Code Extensions
13
+ *.vsix
14
+
15
+ ### JetBrains template
16
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
17
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
18
+
19
+ # User-specific stuff
20
+ .idea/**/workspace.xml
21
+ .idea/**/tasks.xml
22
+ .idea/**/usage.statistics.xml
23
+ .idea/**/dictionaries
24
+ .idea/**/shelf
25
+
26
+ # AWS User-specific
27
+ .idea/**/aws.xml
28
+
29
+ # Generated files
30
+ .idea/**/contentModel.xml
31
+
32
+ # Sensitive or high-churn files
33
+ .idea/**/dataSources/
34
+ .idea/**/dataSources.ids
35
+ .idea/**/dataSources.local.xml
36
+ .idea/**/sqlDataSources.xml
37
+ .idea/**/dynamic.xml
38
+ .idea/**/uiDesigner.xml
39
+ .idea/**/dbnavigator.xml
40
+
41
+ # Gradle
42
+ .idea/**/gradle.xml
43
+ .idea/**/libraries
44
+
45
+ # Gradle and Maven with auto-import
46
+ # When using Gradle or Maven with auto-import, you should exclude module files,
47
+ # since they will be recreated, and may cause churn. Uncomment if using
48
+ # auto-import.
49
+ # .idea/artifacts
50
+ # .idea/compiler.xml
51
+ # .idea/jarRepositories.xml
52
+ # .idea/modules.xml
53
+ # .idea/*.iml
54
+ # .idea/modules
55
+ # *.iml
56
+ # *.ipr
57
+
58
+ # CMake
59
+ cmake-build-*/
60
+
61
+ # Mongo Explorer plugin
62
+ .idea/**/mongoSettings.xml
63
+
64
+ # File-based project format
65
+ *.iws
66
+
67
+ # IntelliJ
68
+ out/
69
+
70
+ # mpeltonen/sbt-idea plugin
71
+ .idea_modules/
72
+
73
+ # JIRA plugin
74
+ atlassian-ide-plugin.xml
75
+
76
+ # Cursive Clojure plugin
77
+ .idea/replstate.xml
78
+
79
+ # SonarLint plugin
80
+ .idea/sonarlint/
81
+
82
+ # Crashlytics plugin (for Android Studio and IntelliJ)
83
+ com_crashlytics_export_strings.xml
84
+ crashlytics.properties
85
+ crashlytics-build.properties
86
+ fabric.properties
87
+
88
+ # Editor-based Rest Client
89
+ .idea/httpRequests
90
+
91
+ # Android studio 3.1+ serialized cache file
92
+ .idea/caches/build_file_checksums.ser
93
+
94
+ ### VirtualEnv template
95
+ # Virtualenv
96
+ # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
97
+ .Python
98
+ [Bb]in
99
+ [Ii]nclude
100
+ [Ll]ib
101
+ [Ll]ib64
102
+ [Ll]ocal
103
+ [Ss]cripts
104
+ pyvenv.cfg
105
+ .venv
106
+ pip-selfcheck.json
107
+
108
+ ### Python template
109
+ # Byte-compiled / optimized / DLL files
110
+ __pycache__/
111
+ *.py[cod]
112
+ *$py.class
113
+
114
+ # C extensions
115
+ *.so
116
+
117
+ # Distribution / packaging
118
+ build/
119
+ develop-eggs/
120
+ dist/
121
+ downloads/
122
+ eggs/
123
+ .eggs/
124
+ lib/
125
+ lib64/
126
+ parts/
127
+ sdist/
128
+ var/
129
+ wheels/
130
+ share/python-wheels/
131
+ *.egg-info/
132
+ .installed.cfg
133
+ *.egg
134
+ MANIFEST
135
+
136
+ # PyInstaller
137
+ # Usually these files are written by a python script from a template
138
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
139
+ *.manifest
140
+ *.spec
141
+
142
+ # Installer logs
143
+ pip-log.txt
144
+ pip-delete-this-directory.txt
145
+
146
+ # Unit test / coverage reports
147
+ htmlcov/
148
+ .tox/
149
+ .nox/
150
+ .coverage
151
+ .coverage.*
152
+ .cache
153
+ nosetests.xml
154
+ coverage.xml
155
+ *.cover
156
+ *.py,cover
157
+ .hypothesis/
158
+ .pytest_cache/
159
+ cover/
160
+
161
+ # Translations
162
+ *.mo
163
+ *.pot
164
+
165
+ # Django stuff:
166
+ *.log
167
+ local_settings.py
168
+ db.sqlite3
169
+ db.sqlite3-journal
170
+
171
+ # Flask stuff:
172
+ instance/
173
+ .webassets-cache
174
+
175
+ # Scrapy stuff:
176
+ .scrapy
177
+
178
+ # Sphinx documentation
179
+ docs/_build/
180
+
181
+ # PyBuilder
182
+ .pybuilder/
183
+ target/
184
+
185
+ # Jupyter Notebook
186
+ .ipynb_checkpoints
187
+
188
+ # IPython
189
+ profile_default/
190
+ ipython_config.py
191
+
192
+ # pyenv
193
+ # For a library or package, you might want to ignore these files since the code is
194
+ # intended to run in multiple environments; otherwise, check them in:
195
+ # .python-version
196
+
197
+ # pipenv
198
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
199
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
200
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
201
+ # install all needed dependencies.
202
+ #Pipfile.lock
203
+
204
+ # poetry
205
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
206
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
207
+ # commonly ignored for libraries.
208
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
209
+ #poetry.lock
210
+
211
+ # pdm
212
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
213
+ #pdm.lock
214
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
215
+ # in version control.
216
+ # https://pdm.fming.dev/#use-with-ide
217
+ .pdm.toml
218
+
219
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
220
+ __pypackages__/
221
+
222
+ # Celery stuff
223
+ celerybeat-schedule
224
+ celerybeat.pid
225
+
226
+ # SageMath parsed files
227
+ *.sage.py
228
+
229
+ # Environments
230
+ .env
231
+ env/
232
+ venv/
233
+ ENV/
234
+ env.bak/
235
+ venv.bak/
236
+
237
+ # Spyder project settings
238
+ .spyderproject
239
+ .spyproject
240
+
241
+ # Rope project settings
242
+ .ropeproject
243
+
244
+ # mkdocs documentation
245
+ /site
246
+
247
+ # mypy
248
+ .mypy_cache/
249
+ .dmypy.json
250
+ dmypy.json
251
+
252
+ # Pyre type checker
253
+ .pyre/
254
+
255
+ # pytype static type analyzer
256
+ .pytype/
257
+
258
+ # Cython debug symbols
259
+ cython_debug/
260
+
261
+ # PyCharm
262
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
263
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
264
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
265
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
266
+ .idea/
267
+
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stackit-cdn
3
- Version: 2.3.0
3
+ Version: 2.4.0
4
4
  Summary: CDN API
5
+ Project-URL: Homepage, https://github.com/stackitcloud/stackit-sdk-python
6
+ Project-URL: Issues, https://github.com/stackitcloud/stackit-sdk-python/issues
7
+ Author-email: STACKIT Developer Tools <developer-tools@stackit.cloud>
5
8
  License-File: LICENSE.md
6
9
  License-File: NOTICE.txt
7
- Author: STACKIT Developer Tools
8
- Author-email: developer-tools@stackit.cloud
9
- Requires-Python: >=3.9,<4.0
10
10
  Classifier: License :: OSI Approved :: Apache Software License
11
11
  Classifier: Operating System :: OS Independent
12
12
  Classifier: Programming Language :: Python :: 3
@@ -16,12 +16,11 @@ Classifier: Programming Language :: Python :: 3.11
16
16
  Classifier: Programming Language :: Python :: 3.12
17
17
  Classifier: Programming Language :: Python :: 3.13
18
18
  Classifier: Programming Language :: Python :: 3.14
19
- Requires-Dist: pydantic (>=2.9.2)
20
- Requires-Dist: python-dateutil (>=2.9.0.post0)
21
- Requires-Dist: requests (>=2.32.3)
22
- Requires-Dist: stackit-core (>=0.0.1a)
23
- Project-URL: Homepage, https://github.com/stackitcloud/stackit-sdk-python
24
- Project-URL: Issues, https://github.com/stackitcloud/stackit-sdk-python/issues
19
+ Requires-Python: <4.0,>=3.9
20
+ Requires-Dist: pydantic>=2.9.2
21
+ Requires-Dist: python-dateutil>=2.9.0.post0
22
+ Requires-Dist: requests>=2.32.3
23
+ Requires-Dist: stackit-core>=0.0.1a
25
24
  Description-Content-Type: text/markdown
26
25
 
27
26
  # stackit.cdn
@@ -45,4 +44,4 @@ import stackit.cdn
45
44
 
46
45
  ## Getting Started
47
46
 
48
- [Examples](https://github.com/stackitcloud/stackit-sdk-python/tree/main/examples) for the usage of the package can be found in the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
47
+ [Examples](https://github.com/stackitcloud/stackit-sdk-python/tree/main/examples) for the usage of the package can be found in the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
@@ -1,55 +1,67 @@
1
1
  [project]
2
2
  name = "stackit-cdn"
3
-
4
- [tool.poetry]
5
- name = "stackit-cdn"
6
- version = "v2.3.0"
7
- authors = [
8
- "STACKIT Developer Tools <developer-tools@stackit.cloud>",
9
- ]
3
+ version = "v2.4.0"
10
4
  description = "CDN API"
5
+ authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
6
+ requires-python = ">=3.9,<4.0"
11
7
  readme = "README.md"
12
- #license = "NoLicense"
13
8
  classifiers = [
14
9
  "Programming Language :: Python :: 3",
15
10
  "License :: OSI Approved :: Apache Software License",
16
11
  "Operating System :: OS Independent",
12
+ "Programming Language :: Python :: 3.9",
13
+ "Programming Language :: Python :: 3.10",
14
+ "Programming Language :: Python :: 3.11",
15
+ "Programming Language :: Python :: 3.12",
16
+ "Programming Language :: Python :: 3.13",
17
+ "Programming Language :: Python :: 3.14",
17
18
  ]
18
- packages = [
19
- { include = "stackit", from="src" }
19
+ dependencies = [
20
+ "stackit-core>=0.0.1a",
21
+ "requests>=2.32.3",
22
+ "pydantic>=2.9.2",
23
+ "python-dateutil>=2.9.0.post0",
20
24
  ]
21
25
 
22
- [tool.poetry.dependencies]
23
- python = ">=3.9,<4.0"
24
- stackit-core = ">=0.0.1a"
25
- requests = ">=2.32.3"
26
- pydantic = ">=2.9.2"
27
- python-dateutil = ">=2.9.0.post0"
28
-
29
- [tool.poetry.group.dev.dependencies]
30
- black = ">=24.8.0"
31
- pytest = ">=8.3.3"
32
- flake8 = [
33
- { version= ">=5.0.3", python="<3.12"},
34
- { version= ">=6.0.1", python=">=3.12"}
35
- ]
36
- flake8-black = ">=0.3.6"
37
- flake8-pyproject = ">=1.2.3"
38
- autoimport = ">=1.6.1"
39
- flake8-eol = ">=0.0.8"
40
- flake8-eradicate = ">=1.5.0"
41
- flake8-bandit = ">=4.1.1"
42
- flake8-bugbear = ">=23.1.14"
43
- flake8-quotes = ">=3.4.0"
44
- isort = ">=5.13.2"
45
-
46
26
  [project.urls]
47
27
  Homepage = "https://github.com/stackitcloud/stackit-sdk-python"
48
28
  Issues = "https://github.com/stackitcloud/stackit-sdk-python/issues"
49
29
 
30
+ [dependency-groups]
31
+ dev = [
32
+ "black>=24.8.0",
33
+ "pytest>=8.3.3",
34
+ "flake8>=5.0.3 ; python_full_version < '3.12'",
35
+ "flake8>=6.0.1 ; python_full_version >= '3.12'",
36
+ "flake8-black>=0.3.6",
37
+ "flake8-pyproject>=1.2.3",
38
+ "autoimport>=1.6.1",
39
+ "flake8-eol>=0.0.8",
40
+ "flake8-eradicate>=1.5.0",
41
+ "flake8-bandit>=4.1.1",
42
+ "flake8-bugbear>=23.1.14",
43
+ "flake8-quotes>=3.4.0",
44
+ "isort>=5.13.2",
45
+ ]
46
+
47
+ [tool.uv]
48
+ default-groups = "all"
49
+
50
+ [tool.uv.sources]
51
+ stackit-core = { path = "../../core" }
52
+
53
+ [tool.hatch.build.targets.sdist]
54
+ include = ["src/stackit"]
55
+
56
+ [tool.hatch.build.targets.wheel]
57
+ include = ["src/stackit"]
58
+
59
+ [tool.hatch.build.targets.wheel.sources]
60
+ "src/stackit" = "stackit"
61
+
50
62
  [build-system]
51
- requires = ["setuptools", "poetry-core"]
52
- build-backend = "poetry.core.masonry.api"
63
+ requires = ["hatchling"]
64
+ build-backend = "hatchling.build"
53
65
 
54
66
  [tool.pytest.ini_options]
55
67
  pythonpath = [
@@ -3,7 +3,7 @@
3
3
  # flake8: noqa
4
4
 
5
5
  """
6
- CDN API
6
+ STACKIT CDN API
7
7
 
8
8
  API used to create and manage your CDN distributions.
9
9