clarity-api-sdk-python 0.1.2__tar.gz → 0.1.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
2
  Name: clarity-api-sdk-python
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: A Python SDK to connect to the CTI Clarity API server.
5
5
  Author-email: "Chesapeake Technology Inc." <support@chesapeaketech.com>
6
6
  Project-URL: Homepage, https://github.com/chesapeake-tech/clarity-api-sdk-python
@@ -9,11 +9,16 @@ Classifier: License :: OSI Approved :: MIT License
9
9
  Classifier: Operating System :: OS Independent
10
10
  Requires-Python: >=3.12
11
11
  Description-Content-Type: text/markdown
12
+ Requires-Dist: httpx>=0.28.1
13
+ Requires-Dist: brotli
14
+ Requires-Dist: h2
12
15
  Requires-Dist: httpx_auth>=0.23.1
13
16
  Requires-Dist: httpx-retries>=0.4.5
14
- Requires-Dist: httpx[brotli]>=0.28.1
15
- Requires-Dist: httpx[http2]>=0.28.1
16
17
  Requires-Dist: structlog
18
+ Provides-Extra: brotli
19
+ Requires-Dist: httpx[brotli]>=0.28.1; extra == "brotli"
20
+ Provides-Extra: http2
21
+ Requires-Dist: httpx[http2]>=0.28.1; extra == "http2"
17
22
 
18
23
  # Clarity API SDK for Python
19
24
 
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "clarity-api-sdk-python"
8
- version = "0.1.2"
8
+ version = "0.1.3"
9
9
  authors = [
10
10
  { name="Chesapeake Technology Inc.", email="support@chesapeaketech.com" },
11
11
  ]
@@ -18,13 +18,18 @@ classifiers = [
18
18
  "Operating System :: OS Independent",
19
19
  ]
20
20
  dependencies = [
21
+ "httpx>=0.28.1",
22
+ "brotli",
23
+ "h2",
21
24
  "httpx_auth>=0.23.1",
22
25
  "httpx-retries>=0.4.5",
23
- "httpx[brotli]>=0.28.1",
24
- "httpx[http2]>=0.28.1",
25
26
  "structlog",
26
27
  ]
27
28
 
29
+ [project.optional-dependencies]
30
+ brotli = ["httpx[brotli]>=0.28.1"]
31
+ http2 = ["httpx[http2]>=0.28.1"]
32
+
28
33
  [project.urls]
29
34
  "Homepage" = "https://github.com/chesapeake-tech/clarity-api-sdk-python"
30
35
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clarity-api-sdk-python
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: A Python SDK to connect to the CTI Clarity API server.
5
5
  Author-email: "Chesapeake Technology Inc." <support@chesapeaketech.com>
6
6
  Project-URL: Homepage, https://github.com/chesapeake-tech/clarity-api-sdk-python
@@ -9,11 +9,16 @@ Classifier: License :: OSI Approved :: MIT License
9
9
  Classifier: Operating System :: OS Independent
10
10
  Requires-Python: >=3.12
11
11
  Description-Content-Type: text/markdown
12
+ Requires-Dist: httpx>=0.28.1
13
+ Requires-Dist: brotli
14
+ Requires-Dist: h2
12
15
  Requires-Dist: httpx_auth>=0.23.1
13
16
  Requires-Dist: httpx-retries>=0.4.5
14
- Requires-Dist: httpx[brotli]>=0.28.1
15
- Requires-Dist: httpx[http2]>=0.28.1
16
17
  Requires-Dist: structlog
18
+ Provides-Extra: brotli
19
+ Requires-Dist: httpx[brotli]>=0.28.1; extra == "brotli"
20
+ Provides-Extra: http2
21
+ Requires-Dist: httpx[http2]>=0.28.1; extra == "http2"
17
22
 
18
23
  # Clarity API SDK for Python
19
24
 
@@ -1,5 +1,12 @@
1
+ httpx>=0.28.1
2
+ brotli
3
+ h2
1
4
  httpx_auth>=0.23.1
2
5
  httpx-retries>=0.4.5
6
+ structlog
7
+
8
+ [brotli]
3
9
  httpx[brotli]>=0.28.1
10
+
11
+ [http2]
4
12
  httpx[http2]>=0.28.1
5
- structlog