gitodo 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.
- gitodo-0.1.0/PKG-INFO +81 -0
- gitodo-0.1.0/README.md +52 -0
- gitodo-0.1.0/pyproject.toml +63 -0
- gitodo-0.1.0/setup.cfg +4 -0
- gitodo-0.1.0/src/gitodo/__init__.py +11 -0
- gitodo-0.1.0/src/gitodo/main.py +27 -0
- gitodo-0.1.0/src/gitodo.egg-info/PKG-INFO +81 -0
- gitodo-0.1.0/src/gitodo.egg-info/SOURCES.txt +10 -0
- gitodo-0.1.0/src/gitodo.egg-info/dependency_links.txt +1 -0
- gitodo-0.1.0/src/gitodo.egg-info/entry_points.txt +2 -0
- gitodo-0.1.0/src/gitodo.egg-info/requires.txt +7 -0
- gitodo-0.1.0/src/gitodo.egg-info/top_level.txt +1 -0
gitodo-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gitodo
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A simple A2A client library
|
|
5
|
+
Author-email: whillhill <ooooofish@126.com>
|
|
6
|
+
Maintainer-email: whillhill <ooooofish@126.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/whillhill/gitodo
|
|
9
|
+
Project-URL: Repository, https://github.com/whillhill/gitodo
|
|
10
|
+
Project-URL: Issues, https://github.com/whillhill/gitodo/issues
|
|
11
|
+
Keywords: client,a2a,api
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Requires-Python: >=3.8
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
Provides-Extra: dev
|
|
24
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
25
|
+
Requires-Dist: pytest-cov>=4.0; extra == "dev"
|
|
26
|
+
Requires-Dist: black>=22.0; extra == "dev"
|
|
27
|
+
Requires-Dist: flake8>=5.0; extra == "dev"
|
|
28
|
+
Requires-Dist: mypy>=1.0; extra == "dev"
|
|
29
|
+
|
|
30
|
+
# A2A Store
|
|
31
|
+
|
|
32
|
+
A simple Python package for A2A Store functionality.
|
|
33
|
+
|
|
34
|
+
## Installation
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
pip install a2astore
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Usage
|
|
41
|
+
|
|
42
|
+
```python
|
|
43
|
+
from fastacp import hello_world
|
|
44
|
+
|
|
45
|
+
# Basic usage
|
|
46
|
+
print(hello_world()) # Output: Hello, World! Welcome to A2A Store!
|
|
47
|
+
|
|
48
|
+
# With custom name
|
|
49
|
+
print(hello_world("Alice")) # Output: Hello, Alice! Welcome to A2A Store!
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### Command Line Usage
|
|
53
|
+
|
|
54
|
+
After installation, you can also use the command line tool:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
a2astore-hello
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Development
|
|
61
|
+
|
|
62
|
+
To build the package:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
python -m build
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
To upload to PyPI:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
twine upload dist/*
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## License
|
|
75
|
+
|
|
76
|
+
MIT License
|
|
77
|
+
|
|
78
|
+
## Author
|
|
79
|
+
|
|
80
|
+
- **whillhill** - [GitHub](https://github.com/whillhill)
|
|
81
|
+
- Email: ooooofish@126.com
|
gitodo-0.1.0/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# A2A Store
|
|
2
|
+
|
|
3
|
+
A simple Python package for A2A Store functionality.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install a2astore
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
from fastacp import hello_world
|
|
15
|
+
|
|
16
|
+
# Basic usage
|
|
17
|
+
print(hello_world()) # Output: Hello, World! Welcome to A2A Store!
|
|
18
|
+
|
|
19
|
+
# With custom name
|
|
20
|
+
print(hello_world("Alice")) # Output: Hello, Alice! Welcome to A2A Store!
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Command Line Usage
|
|
24
|
+
|
|
25
|
+
After installation, you can also use the command line tool:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
a2astore-hello
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Development
|
|
32
|
+
|
|
33
|
+
To build the package:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
python -m build
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
To upload to PyPI:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
twine upload dist/*
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
MIT License
|
|
48
|
+
|
|
49
|
+
## Author
|
|
50
|
+
|
|
51
|
+
- **whillhill** - [GitHub](https://github.com/whillhill)
|
|
52
|
+
- Email: ooooofish@126.com
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "gitodo"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "A simple A2A client library"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "whillhill", email = "ooooofish@126.com"}
|
|
13
|
+
]
|
|
14
|
+
maintainers = [
|
|
15
|
+
{name = "whillhill", email = "ooooofish@126.com"}
|
|
16
|
+
]
|
|
17
|
+
keywords = ["client", "a2a", "api"]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 3 - Alpha",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"License :: OSI Approved :: MIT License",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Programming Language :: Python :: 3.8",
|
|
24
|
+
"Programming Language :: Python :: 3.9",
|
|
25
|
+
"Programming Language :: Python :: 3.10",
|
|
26
|
+
"Programming Language :: Python :: 3.11",
|
|
27
|
+
"Programming Language :: Python :: 3.12",
|
|
28
|
+
]
|
|
29
|
+
requires-python = ">=3.8"
|
|
30
|
+
dependencies = []
|
|
31
|
+
|
|
32
|
+
[project.urls]
|
|
33
|
+
Homepage = "https://github.com/whillhill/gitodo"
|
|
34
|
+
Repository = "https://github.com/whillhill/gitodo"
|
|
35
|
+
Issues = "https://github.com/whillhill/gitodo/issues"
|
|
36
|
+
|
|
37
|
+
[project.scripts]
|
|
38
|
+
gitodo = "gitodo.main:main"
|
|
39
|
+
|
|
40
|
+
[project.optional-dependencies]
|
|
41
|
+
dev = [
|
|
42
|
+
"pytest>=7.0",
|
|
43
|
+
"pytest-cov>=4.0",
|
|
44
|
+
"black>=22.0",
|
|
45
|
+
"flake8>=5.0",
|
|
46
|
+
"mypy>=1.0",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[tool.setuptools.packages.find]
|
|
50
|
+
where = ["src"]
|
|
51
|
+
|
|
52
|
+
[tool.setuptools.package-dir]
|
|
53
|
+
"" = "src"
|
|
54
|
+
|
|
55
|
+
[tool.black]
|
|
56
|
+
line-length = 88
|
|
57
|
+
target-version = ['py38']
|
|
58
|
+
|
|
59
|
+
[tool.mypy]
|
|
60
|
+
python_version = "3.8"
|
|
61
|
+
warn_return_any = true
|
|
62
|
+
warn_unused_configs = true
|
|
63
|
+
disallow_untyped_defs = true
|
gitodo-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main module for gitodo package
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
def hello_world(name: str = "World") -> str:
|
|
6
|
+
"""
|
|
7
|
+
Return a hello world greeting.
|
|
8
|
+
|
|
9
|
+
Args:
|
|
10
|
+
name (str): The name to greet. Defaults to "World".
|
|
11
|
+
|
|
12
|
+
Returns:
|
|
13
|
+
str: A greeting message.
|
|
14
|
+
"""
|
|
15
|
+
return f"Hello, {name}! Welcome to gitodo!"
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def main():
|
|
19
|
+
"""
|
|
20
|
+
Main entry point for the command line interface.
|
|
21
|
+
"""
|
|
22
|
+
print(hello_world())
|
|
23
|
+
print("This is gitodo package - ready for your awesome features!")
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
if __name__ == "__main__":
|
|
27
|
+
main()
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gitodo
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A simple A2A client library
|
|
5
|
+
Author-email: whillhill <ooooofish@126.com>
|
|
6
|
+
Maintainer-email: whillhill <ooooofish@126.com>
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/whillhill/gitodo
|
|
9
|
+
Project-URL: Repository, https://github.com/whillhill/gitodo
|
|
10
|
+
Project-URL: Issues, https://github.com/whillhill/gitodo/issues
|
|
11
|
+
Keywords: client,a2a,api
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Requires-Python: >=3.8
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
Provides-Extra: dev
|
|
24
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
25
|
+
Requires-Dist: pytest-cov>=4.0; extra == "dev"
|
|
26
|
+
Requires-Dist: black>=22.0; extra == "dev"
|
|
27
|
+
Requires-Dist: flake8>=5.0; extra == "dev"
|
|
28
|
+
Requires-Dist: mypy>=1.0; extra == "dev"
|
|
29
|
+
|
|
30
|
+
# A2A Store
|
|
31
|
+
|
|
32
|
+
A simple Python package for A2A Store functionality.
|
|
33
|
+
|
|
34
|
+
## Installation
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
pip install a2astore
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Usage
|
|
41
|
+
|
|
42
|
+
```python
|
|
43
|
+
from fastacp import hello_world
|
|
44
|
+
|
|
45
|
+
# Basic usage
|
|
46
|
+
print(hello_world()) # Output: Hello, World! Welcome to A2A Store!
|
|
47
|
+
|
|
48
|
+
# With custom name
|
|
49
|
+
print(hello_world("Alice")) # Output: Hello, Alice! Welcome to A2A Store!
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### Command Line Usage
|
|
53
|
+
|
|
54
|
+
After installation, you can also use the command line tool:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
a2astore-hello
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Development
|
|
61
|
+
|
|
62
|
+
To build the package:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
python -m build
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
To upload to PyPI:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
twine upload dist/*
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## License
|
|
75
|
+
|
|
76
|
+
MIT License
|
|
77
|
+
|
|
78
|
+
## Author
|
|
79
|
+
|
|
80
|
+
- **whillhill** - [GitHub](https://github.com/whillhill)
|
|
81
|
+
- Email: ooooofish@126.com
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/gitodo/__init__.py
|
|
4
|
+
src/gitodo/main.py
|
|
5
|
+
src/gitodo.egg-info/PKG-INFO
|
|
6
|
+
src/gitodo.egg-info/SOURCES.txt
|
|
7
|
+
src/gitodo.egg-info/dependency_links.txt
|
|
8
|
+
src/gitodo.egg-info/entry_points.txt
|
|
9
|
+
src/gitodo.egg-info/requires.txt
|
|
10
|
+
src/gitodo.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gitodo
|