avcloud 0.1.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.
avcloud-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,53 @@
1
+ Metadata-Version: 2.3
2
+ Name: avcloud
3
+ Version: 0.1.0
4
+ Summary: repository to host external facing avcloud sdk
5
+ Author: Summer Li
6
+ Author-email: jiaoyli@umich.edu
7
+ Requires-Python: >=3.13
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.13
10
+ Description-Content-Type: text/markdown
11
+
12
+ # AVCloud SDK
13
+
14
+ A Python SDK for interfacing with AVCloud services.
15
+
16
+ ## Overview
17
+
18
+ AVCloud SDK provides a simple and intuitive interface to interact with AVCloud services. This SDK is designed to be easy to use while providing robust functionality for developers building applications that integrate with AVCloud.
19
+
20
+ ## Features
21
+
22
+ - **Simple API Client**: Easy-to-use client for AVCloud services
23
+ - **Type Safety**: Built with type hints for better development experience
24
+ - **Comprehensive Testing**: Full test suite with pytest
25
+ - **Modern Python**: Supports Python 3.13+
26
+
27
+
28
+ ## Quick Start
29
+
30
+ ```python
31
+ from avcloud.client import AvCloudClient
32
+
33
+ # Initialize the client
34
+ client = AvCloudClient(private_key_path="~/.ssh/avcloud_key.pem")
35
+
36
+ ```
37
+
38
+ ## Contributing
39
+
40
+ Interested in contributing? Please see our [Developer Guide](docs/dev/developer_guide.md) for detailed information on:
41
+
42
+
43
+ ### Development Guidelines
44
+
45
+ - Follow PEP 8 style guidelines
46
+ - Add type hints to all functions and methods
47
+ - Write comprehensive tests for new features
48
+ - Update documentation as needed
49
+ - Ensure all tests pass before submitting PR
50
+
51
+ ## Changelog
52
+
53
+ See [CHANGELOG.md](CHANGELOG.md) for a detailed history of changes to this project.
@@ -0,0 +1,42 @@
1
+ # AVCloud SDK
2
+
3
+ A Python SDK for interfacing with AVCloud services.
4
+
5
+ ## Overview
6
+
7
+ AVCloud SDK provides a simple and intuitive interface to interact with AVCloud services. This SDK is designed to be easy to use while providing robust functionality for developers building applications that integrate with AVCloud.
8
+
9
+ ## Features
10
+
11
+ - **Simple API Client**: Easy-to-use client for AVCloud services
12
+ - **Type Safety**: Built with type hints for better development experience
13
+ - **Comprehensive Testing**: Full test suite with pytest
14
+ - **Modern Python**: Supports Python 3.13+
15
+
16
+
17
+ ## Quick Start
18
+
19
+ ```python
20
+ from avcloud.client import AvCloudClient
21
+
22
+ # Initialize the client
23
+ client = AvCloudClient(private_key_path="~/.ssh/avcloud_key.pem")
24
+
25
+ ```
26
+
27
+ ## Contributing
28
+
29
+ Interested in contributing? Please see our [Developer Guide](docs/dev/developer_guide.md) for detailed information on:
30
+
31
+
32
+ ### Development Guidelines
33
+
34
+ - Follow PEP 8 style guidelines
35
+ - Add type hints to all functions and methods
36
+ - Write comprehensive tests for new features
37
+ - Update documentation as needed
38
+ - Ensure all tests pass before submitting PR
39
+
40
+ ## Changelog
41
+
42
+ See [CHANGELOG.md](CHANGELOG.md) for a detailed history of changes to this project.
@@ -0,0 +1,27 @@
1
+ [project]
2
+ name = "avcloud"
3
+ version = "0.1.0"
4
+ description = "repository to host external facing avcloud sdk"
5
+ authors = [
6
+ {name = "Summer Li",email = "jiaoyli@umich.edu"}
7
+ ]
8
+ readme = "README.md"
9
+ requires-python = ">=3.13"
10
+ dependencies = [
11
+ ]
12
+
13
+ [tool.poetry]
14
+ exclude = ["*"] # TODO: temporary exclude all codes in package building
15
+
16
+ [tool.setuptools]
17
+ packages = ["avcloud"]
18
+
19
+ [build-system]
20
+ requires = ["poetry-core>=2.0.0,<3.0.0"]
21
+ build-backend = "poetry.core.masonry.api"
22
+
23
+ [tool.poetry.group.dev.dependencies]
24
+ ruff = "^0.11.13"
25
+ pytest = "^8.4.0"
26
+ pre-commit = "^4.2.0"
27
+