multiagent-init 0.1.0__tar.gz → 0.1.2__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.
Files changed (19) hide show
  1. {multiagent_init-0.1.0/src/multiagent_init.egg-info → multiagent_init-0.1.2}/PKG-INFO +13 -31
  2. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/README.md +11 -29
  3. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/pyproject.toml +2 -2
  4. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/src/multiagent_init/cli.py +1 -1
  5. multiagent_init-0.1.2/src/multiagent_init/generator.py +648 -0
  6. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/src/multiagent_init/templates_data.py +219 -109
  7. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/src/multiagent_init/wizard.py +19 -0
  8. {multiagent_init-0.1.0 → multiagent_init-0.1.2/src/multiagent_init.egg-info}/PKG-INFO +13 -31
  9. multiagent_init-0.1.0/src/multiagent_init/generator.py +0 -315
  10. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/LICENSE +0 -0
  11. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/setup.cfg +0 -0
  12. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/src/multiagent_init/__init__.py +0 -0
  13. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/src/multiagent_init.egg-info/SOURCES.txt +0 -0
  14. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/src/multiagent_init.egg-info/dependency_links.txt +0 -0
  15. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/src/multiagent_init.egg-info/entry_points.txt +0 -0
  16. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/src/multiagent_init.egg-info/requires.txt +0 -0
  17. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/src/multiagent_init.egg-info/top_level.txt +0 -0
  18. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/tests/test_generator.py +0 -0
  19. {multiagent_init-0.1.0 → multiagent_init-0.1.2}/tests/test_wizard.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: multiagent-init
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Interactive CLI for generating multi-agent AI project boilerplates.
5
5
  Author-email: Pavan Sekhar Mandavilli <pavanmandavilli2004@gmail.com>
6
6
  License: MIT
@@ -8,7 +8,7 @@ Project-URL: Homepage, https://github.com/Pavanmandavilli/multiagent-init
8
8
  Project-URL: Repository, https://github.com/Pavanmandavilli/multiagent-init
9
9
  Project-URL: Issues, https://github.com/Pavanmandavilli/multiagent-init/issues
10
10
  Keywords: multi-agent,agents,ai,scaffolding,cli,generator
11
- Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Development Status :: 5 - Production/Stable
12
12
  Classifier: Intended Audience :: Developers
13
13
  Classifier: License :: OSI Approved :: MIT License
14
14
  Classifier: Programming Language :: Python :: 3
@@ -21,6 +21,11 @@ Dynamic: license-file
21
21
 
22
22
  # 🚀 MultiAgent Init
23
23
 
24
+ [![PyPI version](https://img.shields.io/pypi/v/multiagent-init.svg)](https://pypi.org/project/multiagent-init/)
25
+ [![Python versions](https://img.shields.io/pypi/pyversions/multiagent-init.svg)](https://pypi.org/project/multiagent-init/)
26
+ [![Tests](https://github.com/Pavanmandavilli/multiagent-init/actions/workflows/test.yml/badge.svg)](https://github.com/Pavanmandavilli/multiagent-init/actions/workflows/test.yml)
27
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
28
+
24
29
  Interactive CLI for generating a clean multi-agent AI project.
25
30
 
26
31
  ## Install
@@ -109,39 +114,16 @@ Data Analyst → data_analyst.py → DataAnalystAgent
109
114
  Report Writer → report_writer.py → ReportWriterAgent
110
115
  ```
111
116
 
112
- ## Development
117
+ ## Execution
113
118
 
114
- ```bash
119
+ ```text
120
+ cd "project-name"
115
121
  python3 -m venv .venv
116
122
  source .venv/bin/activate
117
- python -m pip install -e .
118
- python -m unittest discover -s tests -v
123
+ pip install .
124
+ python main.py
119
125
  ```
120
126
 
121
- Build:
122
-
123
- ```bash
124
- python -m pip install --upgrade build
125
- python -m build
126
- ```
127
-
128
- ## Publish
129
-
130
- TestPyPI:
131
-
132
- ```bash
133
- python -m pip install --upgrade twine
134
- python -m twine upload --repository testpypi dist/*
135
- ```
136
-
137
- PyPI:
138
-
139
- ```bash
140
- python -m twine upload dist/*
141
- ```
142
-
143
- For CI/CD, configure PyPI Trusted Publishing with GitHub Actions.
144
-
145
127
  ## License
146
128
 
147
- MIT
129
+ MIT © [Pavan Sekhar Mandavilli](https://github.com/Pavanmandavilli)
@@ -1,5 +1,10 @@
1
1
  # 🚀 MultiAgent Init
2
2
 
3
+ [![PyPI version](https://img.shields.io/pypi/v/multiagent-init.svg)](https://pypi.org/project/multiagent-init/)
4
+ [![Python versions](https://img.shields.io/pypi/pyversions/multiagent-init.svg)](https://pypi.org/project/multiagent-init/)
5
+ [![Tests](https://github.com/Pavanmandavilli/multiagent-init/actions/workflows/test.yml/badge.svg)](https://github.com/Pavanmandavilli/multiagent-init/actions/workflows/test.yml)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
+
3
8
  Interactive CLI for generating a clean multi-agent AI project.
4
9
 
5
10
  ## Install
@@ -88,39 +93,16 @@ Data Analyst → data_analyst.py → DataAnalystAgent
88
93
  Report Writer → report_writer.py → ReportWriterAgent
89
94
  ```
90
95
 
91
- ## Development
96
+ ## Execution
92
97
 
93
- ```bash
98
+ ```text
99
+ cd "project-name"
94
100
  python3 -m venv .venv
95
101
  source .venv/bin/activate
96
- python -m pip install -e .
97
- python -m unittest discover -s tests -v
102
+ pip install .
103
+ python main.py
98
104
  ```
99
105
 
100
- Build:
101
-
102
- ```bash
103
- python -m pip install --upgrade build
104
- python -m build
105
- ```
106
-
107
- ## Publish
108
-
109
- TestPyPI:
110
-
111
- ```bash
112
- python -m pip install --upgrade twine
113
- python -m twine upload --repository testpypi dist/*
114
- ```
115
-
116
- PyPI:
117
-
118
- ```bash
119
- python -m twine upload dist/*
120
- ```
121
-
122
- For CI/CD, configure PyPI Trusted Publishing with GitHub Actions.
123
-
124
106
  ## License
125
107
 
126
- MIT
108
+ MIT © [Pavan Sekhar Mandavilli](https://github.com/Pavanmandavilli)
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "multiagent-init"
7
- version = "0.1.0"
7
+ version = "0.1.2"
8
8
  description = "Interactive CLI for generating multi-agent AI project boilerplates."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -12,7 +12,7 @@ license = {text = "MIT"}
12
12
  authors = [{name = "Pavan Sekhar Mandavilli", email = "pavanmandavilli2004@gmail.com"}]
13
13
  keywords = ["multi-agent", "agents", "ai", "scaffolding", "cli", "generator"]
14
14
  classifiers = [
15
- "Development Status :: 3 - Alpha",
15
+ "Development Status :: 5 - Production/Stable",
16
16
  "Intended Audience :: Developers",
17
17
  "License :: OSI Approved :: MIT License",
18
18
  "Programming Language :: Python :: 3",
@@ -18,7 +18,7 @@ def main() -> int:
18
18
  print()
19
19
  print(f" cd {destination.name}")
20
20
  print(" python3 -m venv .venv")
21
- print(" source .venv/bin/activate # macOS/Linux")
21
+ print(" source .venv/bin/activate")
22
22
  print(" pip install .")
23
23
  print(" python main.py")
24
24
  print()