aceai 0.1.0__py3-none-any.whl
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.
- aceai/__init__.py +13 -0
- aceai-0.1.0.dist-info/METADATA +26 -0
- aceai-0.1.0.dist-info/RECORD +4 -0
- aceai-0.1.0.dist-info/WHEEL +4 -0
aceai/__init__.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""
|
|
2
|
+
AceAI - AI agent framework that delivers.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
__version__ = "0.1.0"
|
|
6
|
+
|
|
7
|
+
def hello_world():
|
|
8
|
+
"""Return a simple greeting message."""
|
|
9
|
+
return "Hello from AceAI package!"
|
|
10
|
+
|
|
11
|
+
def add_numbers(a: int, b: int) -> int:
|
|
12
|
+
"""Add two numbers together."""
|
|
13
|
+
return a + b
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aceai
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI agent framework that delivers
|
|
5
|
+
Author-email: raceychan <raceychan@gmail.com>
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# AAI
|
|
10
|
+
|
|
11
|
+
A dummy package for testing PyPI publishing.
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pip install aai
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```python
|
|
22
|
+
from aai import hello_world, add_numbers
|
|
23
|
+
|
|
24
|
+
print(hello_world()) # Hello from AAI package!
|
|
25
|
+
print(add_numbers(2, 3)) # 5
|
|
26
|
+
```
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
aceai/__init__.py,sha256=m1ryKQ9DzgYLzuBVWP5q57SOJqt3qiqM5s6Filz6nVA,269
|
|
2
|
+
aceai-0.1.0.dist-info/METADATA,sha256=K5PDBJft_jnOscgyMhx2MLWs0072zx-R8bhhBs5buVA,444
|
|
3
|
+
aceai-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4
|
+
aceai-0.1.0.dist-info/RECORD,,
|