Apache-2.0
Identifier: Apache-2.0_ag2_0.9.6
# Copyright (c) 2023 - 2025, AG2ai, Inc., AG2ai open-source projects maintainers and core contributors
#
# SPDX-License-Identifier: Apache-2.0
# this file is autogenerated, please do not edit it directly
# instead, edit the corresponding setup.jinja file and run the ./scripts/build-setup-files.py script
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
# Get the code version
version = {}
with open(os.path.join(here, "autogen/version.py")) as fp:
exec(fp.read(), version)
__version__ = version["__version__"]
setuptools.setup(
name="{{ name }}",
version=__version__,
description="Alias package for ag2",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["ag2==" + __version__],
extras_require={
{% for group, packages in optional_dependencies.items() -%}
"{{ group }}": ["ag2[{{ group }}]==" + __version__],
{% endfor %}
},
url="https://github.com/ag2ai/ag2",
author="Chi Wang & Qingyun Wu",
author_email="support@ag2.ai",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
license="Apache Software License 2.0",
python_requires=">=3.10,<3.14",
)
previous
next