konecty-sdk-python 0.2.0__tar.gz → 0.3.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: konecty-sdk-python
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: Konecty SDK Python
5
5
  Author-email: Leonardo Leal <leonardo.leal@konecty.com>, Derotino Silveira <derotino.silveira@konecty.com>
6
6
  License: MIT
@@ -28,3 +28,14 @@ Description-Content-Type: text/markdown
28
28
  ## Konecty Python SDK
29
29
 
30
30
  > 🛠️ Work in progress
31
+
32
+ #### Build & Publish
33
+
34
+ It is needed to increase the version number on the [pyproject](./pyproject.toml) file.
35
+
36
+ ```sh
37
+
38
+ uv build
39
+ uvx twine upload --config-file .pypirc --skip-existing dist/*
40
+
41
+ ```
@@ -0,0 +1,14 @@
1
+ ## Konecty Python SDK
2
+
3
+ > 🛠️ Work in progress
4
+
5
+ #### Build & Publish
6
+
7
+ It is needed to increase the version number on the [pyproject](./pyproject.toml) file.
8
+
9
+ ```sh
10
+
11
+ uv build
12
+ uvx twine upload --config-file .pypirc --skip-existing dist/*
13
+
14
+ ```
@@ -25,7 +25,13 @@ cli.add_command(pull_command)
25
25
 
26
26
  def main():
27
27
  """Entry point for the CLI."""
28
- cli()
28
+ import asyncio
29
+ import sys
30
+
31
+ if sys.platform == "win32":
32
+ asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
33
+
34
+ asyncio.run(cli())
29
35
 
30
36
 
31
37
  if __name__ == "__main__":
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "konecty-sdk-python"
3
- version = "0.2.0"
3
+ version = "0.3.0"
4
4
  description = "Konecty SDK Python"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -1,3 +0,0 @@
1
- ## Konecty Python SDK
2
-
3
- > 🛠️ Work in progress