cloudkit 0.1.0__tar.gz → 0.1.1__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: cloudkit
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Python cloud abstraction SDK for databases and AI services on Azure and AWS
5
5
  Author-email: sleepeatai <sleepeatai@gmail.com>
6
6
  License: MIT
@@ -33,7 +33,11 @@ Requires-Dist: pydantic>=2.10.6
33
33
  Requires-Dist: pyyaml>=6.0.2
34
34
  Description-Content-Type: text/markdown
35
35
 
36
- # Agentic Composer SDK
36
+ # CloudKit
37
+
38
+ [![PyPI version](https://badge.fury.io/py/cloudkit.svg)](https://badge.fury.io/py/cloudkit)
39
+ [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
40
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
37
41
 
38
42
  A Python cloud abstraction SDK that provides a unified interface for databases and AI services across Azure and AWS. This SDK allows you to build cloud-agnostic microservices that can easily switch between cloud providers without changing your application code.
39
43
 
@@ -55,36 +59,25 @@ A Python cloud abstraction SDK that provides a unified interface for databases a
55
59
 
56
60
  ## Installation
57
61
 
58
- 1. Install required tools:
59
- ```bash
60
- python3 -m pip install keyring artifacts-keyring
61
- ```
62
+ Install from PyPI:
62
63
 
63
- 2. Configure Azure Artifacts authentication:
64
64
  ```bash
65
- keyring set artifacts.dev.azure.com Consulting-DTT-AI-Integration-Services <your-PAT>
65
+ pip install cloudkit
66
66
  ```
67
67
 
68
- 3. Install the package:
69
- ```bash
70
- python3 -m pip install cloudabstractor
71
- ```
68
+ Or install from source:
72
69
 
73
70
  ```bash
74
- # Install from source
75
- git clone <repository-url>
76
- cd agentic-composer-sdk
71
+ git clone https://github.com/sleepeatai/cloudkit.git
72
+ cd cloudkit
77
73
  pip install -e .
78
-
79
- # Or install from PyPI (once published)
80
- pip install agentic-composer-sdk
81
74
  ```
82
75
 
83
76
  ## Quick Start
84
77
 
85
78
  ```python
86
79
  import asyncio
87
- from agentic_composer_sdk import CloudProvider
80
+ from cloudkit import CloudProvider
88
81
 
89
82
  async def main():
90
83
  # Initialize for Azure
@@ -153,7 +146,7 @@ export CLOUD_SDK_AWS__AWS_REGION=us-east-1
153
146
  ### Configuration Dictionary
154
147
 
155
148
  ```python
156
- from agentic_composer_sdk import CloudProvider
149
+ from cloudkit import CloudProvider
157
150
 
158
151
  # Azure configuration
159
152
  azure_config = {
@@ -286,7 +279,7 @@ Here's how to integrate the SDK into a microservice:
286
279
 
287
280
  ```python
288
281
  from fastapi import FastAPI
289
- from agentic_composer_sdk import CloudProvider
282
+ from cloudkit import CloudProvider
290
283
 
291
284
  app = FastAPI()
292
285
 
@@ -363,9 +356,6 @@ chat_response = await bedrock_chat.chat_completion(
363
356
  ## Testing
364
357
 
365
358
  ```bash
366
- # Install test dependencies
367
- pip install -e ".[test]"
368
-
369
359
  # Run tests
370
360
  pytest tests/
371
361
 
@@ -376,18 +366,17 @@ pytest --cov=src tests/
376
366
  ## Development
377
367
 
378
368
  ```bash
379
- # Install development dependencies
380
- pip install -e ".[dev]"
381
-
382
369
  # Format code
383
- black src/ tests/
384
- isort src/ tests/
370
+ ruff format src/ tests/
371
+
372
+ # Lint code
373
+ ruff check src/ tests/
385
374
 
386
375
  # Type checking
387
376
  mypy src/
388
377
 
389
- # Linting
390
- flake8 src/ tests/
378
+ # Run tests
379
+ pytest tests/
391
380
  ```
392
381
 
393
382
  ## Contributing
@@ -1,4 +1,8 @@
1
- # Agentic Composer SDK
1
+ # CloudKit
2
+
3
+ [![PyPI version](https://badge.fury.io/py/cloudkit.svg)](https://badge.fury.io/py/cloudkit)
4
+ [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2
6
 
3
7
  A Python cloud abstraction SDK that provides a unified interface for databases and AI services across Azure and AWS. This SDK allows you to build cloud-agnostic microservices that can easily switch between cloud providers without changing your application code.
4
8
 
@@ -20,36 +24,25 @@ A Python cloud abstraction SDK that provides a unified interface for databases a
20
24
 
21
25
  ## Installation
22
26
 
23
- 1. Install required tools:
24
- ```bash
25
- python3 -m pip install keyring artifacts-keyring
26
- ```
27
+ Install from PyPI:
27
28
 
28
- 2. Configure Azure Artifacts authentication:
29
29
  ```bash
30
- keyring set artifacts.dev.azure.com Consulting-DTT-AI-Integration-Services <your-PAT>
30
+ pip install cloudkit
31
31
  ```
32
32
 
33
- 3. Install the package:
34
- ```bash
35
- python3 -m pip install cloudabstractor
36
- ```
33
+ Or install from source:
37
34
 
38
35
  ```bash
39
- # Install from source
40
- git clone <repository-url>
41
- cd agentic-composer-sdk
36
+ git clone https://github.com/sleepeatai/cloudkit.git
37
+ cd cloudkit
42
38
  pip install -e .
43
-
44
- # Or install from PyPI (once published)
45
- pip install agentic-composer-sdk
46
39
  ```
47
40
 
48
41
  ## Quick Start
49
42
 
50
43
  ```python
51
44
  import asyncio
52
- from agentic_composer_sdk import CloudProvider
45
+ from cloudkit import CloudProvider
53
46
 
54
47
  async def main():
55
48
  # Initialize for Azure
@@ -118,7 +111,7 @@ export CLOUD_SDK_AWS__AWS_REGION=us-east-1
118
111
  ### Configuration Dictionary
119
112
 
120
113
  ```python
121
- from agentic_composer_sdk import CloudProvider
114
+ from cloudkit import CloudProvider
122
115
 
123
116
  # Azure configuration
124
117
  azure_config = {
@@ -251,7 +244,7 @@ Here's how to integrate the SDK into a microservice:
251
244
 
252
245
  ```python
253
246
  from fastapi import FastAPI
254
- from agentic_composer_sdk import CloudProvider
247
+ from cloudkit import CloudProvider
255
248
 
256
249
  app = FastAPI()
257
250
 
@@ -328,9 +321,6 @@ chat_response = await bedrock_chat.chat_completion(
328
321
  ## Testing
329
322
 
330
323
  ```bash
331
- # Install test dependencies
332
- pip install -e ".[test]"
333
-
334
324
  # Run tests
335
325
  pytest tests/
336
326
 
@@ -341,18 +331,17 @@ pytest --cov=src tests/
341
331
  ## Development
342
332
 
343
333
  ```bash
344
- # Install development dependencies
345
- pip install -e ".[dev]"
346
-
347
334
  # Format code
348
- black src/ tests/
349
- isort src/ tests/
335
+ ruff format src/ tests/
336
+
337
+ # Lint code
338
+ ruff check src/ tests/
350
339
 
351
340
  # Type checking
352
341
  mypy src/
353
342
 
354
- # Linting
355
- flake8 src/ tests/
343
+ # Run tests
344
+ pytest tests/
356
345
  ```
357
346
 
358
347
  ## Contributing
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "cloudkit" # Change this to match your import name
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "Python cloud abstraction SDK for databases and AI services on Azure and AWS"
5
5
  authors = [
6
6
  {name = "sleepeatai", email = "sleepeatai@gmail.com"}
@@ -93,4 +93,4 @@ requires = ["hatchling"]
93
93
  build-backend = "hatchling.build"
94
94
 
95
95
  [tool.hatch.build]
96
- packages = ["src/cloudabstractor"]
96
+ packages = ["src/cloudkit"]
File without changes
File without changes