aceai 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.
- aceai-0.1.0/.gitignore +10 -0
- aceai-0.1.0/.python-version +1 -0
- aceai-0.1.0/PKG-INFO +26 -0
- aceai-0.1.0/README.md +18 -0
- aceai-0.1.0/main.py +6 -0
- aceai-0.1.0/pyproject.toml +17 -0
- aceai-0.1.0/src/aceai/__init__.py +13 -0
aceai-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.10
|
aceai-0.1.0/PKG-INFO
ADDED
|
@@ -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
|
+
```
|
aceai-0.1.0/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# AAI
|
|
2
|
+
|
|
3
|
+
A dummy package for testing PyPI publishing.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install aai
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
from aai import hello_world, add_numbers
|
|
15
|
+
|
|
16
|
+
print(hello_world()) # Hello from AAI package!
|
|
17
|
+
print(add_numbers(2, 3)) # 5
|
|
18
|
+
```
|
aceai-0.1.0/main.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "aceai"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "AI agent framework that delivers"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
dependencies = []
|
|
8
|
+
authors = [
|
|
9
|
+
{name = "raceychan", email = "raceychan@gmail.com"}
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
[build-system]
|
|
13
|
+
requires = ["hatchling"]
|
|
14
|
+
build-backend = "hatchling.build"
|
|
15
|
+
|
|
16
|
+
[tool.hatch.build.targets.wheel]
|
|
17
|
+
packages = ["src/aceai"]
|
|
@@ -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
|