mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-06-08 15:05:17 +02:00
feat: merge geekan:cli-etc
This commit is contained in:
commit
78548c2ddc
84 changed files with 2982 additions and 1000 deletions
17
setup.py
17
setup.py
|
|
@ -30,16 +30,16 @@ with open(path.join(here, "requirements.txt"), encoding="utf-8") as f:
|
|||
|
||||
setup(
|
||||
name="metagpt",
|
||||
version="0.1",
|
||||
description="The Multi-Role Meta Programming Framework",
|
||||
version="0.3.0",
|
||||
description="The Multi-Agent Framework",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://gitlab.deepwisdomai.com/pub/metagpt",
|
||||
url="https://github.com/geekan/MetaGPT",
|
||||
author="Alexander Wu",
|
||||
author_email="alexanderwu@fuzhi.ai",
|
||||
license="Apache 2.0",
|
||||
keywords="metagpt multi-role multi-agent programming gpt llm",
|
||||
packages=find_packages(exclude=["contrib", "docs", "examples"]),
|
||||
license="MIT",
|
||||
keywords="metagpt multi-role multi-agent programming gpt llm metaprogramming",
|
||||
packages=find_packages(exclude=["contrib", "docs", "examples", "tests*"]),
|
||||
python_requires=">=3.9",
|
||||
install_requires=requirements,
|
||||
extras_require={
|
||||
|
|
@ -52,4 +52,9 @@ setup(
|
|||
cmdclass={
|
||||
"install_mermaid": InstallMermaidCLI,
|
||||
},
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"metagpt=metagpt.startup:app",
|
||||
],
|
||||
},
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue