konecty-sdk-python 1.0.1__tar.gz → 1.0.3__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
- Name: konecty-sdk-python
3
- Version: 1.0.1
2
+ Name: konecty_sdk_python
3
+ Version: 1.0.3
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
@@ -1,12 +1,13 @@
1
- """Konecty metadata management package."""
1
+ """
2
+ Konecty SDK Python - A Python SDK for interacting with Konecty platform
3
+ """
2
4
 
3
- from .cli import apply_command, backup_command, pull_command
4
- from .lib.client import KonectyClient, KonectyDict, KonectyFilter, KonectyFindParams
5
- from .lib.file_manager import FileManager
6
- from .lib.model import KonectyModelGenerator
7
- from .lib.settings import fill_settings, fill_settings_sync
8
- from .lib.types import Address as KonectyAddress
9
- from .lib.types import (
5
+ from .client import KonectyClient, KonectyDict, KonectyFilter, KonectyFindParams
6
+ from .file_manager import FileManager
7
+ from .model import KonectyModelGenerator
8
+ from .settings import fill_settings, fill_settings_sync
9
+ from .types import Address as KonectyAddress
10
+ from .types import (
10
11
  KonectyBaseModel,
11
12
  KonectyDateTime,
12
13
  KonectyEmail,
@@ -18,24 +19,23 @@ from .lib.types import (
18
19
  )
19
20
 
20
21
  __all__ = [
21
- "apply_command",
22
- "backup_command",
23
- "pull_command",
24
22
  "KonectyClient",
25
- "KonectyDict",
26
- "KonectyFilter",
27
- "KonectyFindParams",
23
+ "KonectyModel",
28
24
  "FileManager",
29
25
  "KonectyModelGenerator",
30
- "KonectyDateTime",
31
- "KonectyUser",
26
+ "fill_settings",
27
+ "fill_settings_sync",
28
+ "KonectyAddress",
32
29
  "KonectyBaseModel",
30
+ "KonectyDateTime",
31
+ "KonectyEmail",
33
32
  "KonectyLabel",
34
- "KonectyPhone",
35
33
  "KonectyLookup",
36
- "KonectyEmail",
37
34
  "KonectyPersonName",
38
- "KonectyAddress",
39
- "fill_settings",
40
- "fill_settings_sync",
35
+ "KonectyPhone",
36
+ "KonectyUser",
37
+ "KonectyModel",
38
+ "KonectyFilter",
39
+ "KonectyFindParams",
40
+ "KonectyDict",
41
41
  ]
@@ -1,6 +1,6 @@
1
1
  [project]
2
- name = "konecty-sdk-python"
3
- version = "1.0.1"
2
+ name = "konecty_sdk_python"
3
+ version = "1.0.3"
4
4
  description = "Konecty SDK Python"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -41,3 +41,9 @@ build-backend = "hatchling.build"
41
41
 
42
42
  [tool.hatch.build.targets.wheel]
43
43
  packages = ["cli", "lib"]
44
+
45
+ [tool.hatch.build]
46
+ include = [
47
+ "lib/**/*.py",
48
+ "cli/**/*.py",
49
+ ]
@@ -1 +0,0 @@
1
- 3.11