Skip to content

Commit

Permalink
Merge pull request #16 from superagentxai/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
SyedHabibM authored Nov 12, 2024
2 parents 59aee40 + ba1142e commit 9c2abfe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "superagentx"
version = "0.1.10"
version = "0.1.11"
description = "The Ultimate Modular Autonomous Multi AI Agent Framework."
license = "MIT"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion superagentx_cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def create_toml_file(self):
rprint(f'Creating toml file at [yellow]{_toml_path.resolve()}')
_toml_template_file = self._jinja_env.get_template('pyproject.toml.jinja2')
_render_toml = _toml_template_file.render(
app_name=self.app_name,
package_name=self.package_name.replace('_', '-'),
author_name=self.author_name,
author_email=self.author_email,
maintainer_name=self.maintainer_name,
Expand Down
4 changes: 2 additions & 2 deletions superagentx_cli/templates/pyproject.toml.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# https://packaging.python.org/en/latest/flow/#the-configuration-file

[tool.poetry]
name = "{{ app_name }}"
name = "{{ package_name }}"
version = "0.0.1"
description = "A Lightweight Modular Autonomous True Multi Agent AI Framework."
authors = [
Expand All @@ -13,7 +13,7 @@ maintainers = [
"{{ maintainer_name }} <{{ maintainer_email }}>",
]
readme = "README.md"
keywords = ["{{ app_name }}", "AGI", "Agentic AI", "ASI", "superagentx", "agent", "LLM"]
keywords = ["{{ package_name }}", "AGI", "Agentic AI", "ASI", "superagentx", "agent", "LLM"]

[tool.poetry.dependencies]
python = ">=3.10,<=3.13"
Expand Down

0 comments on commit 9c2abfe

Please sign in to comment.