File size: 466 Bytes
49b555e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="xllmx",
version="0.0.1",
author="Alpha-VLLM",
description="An Open-source Toolkit for LLM-centered Any2Any Generation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Alpha-VLLM/Lumina-mGPT",
packages=["xllmx"],
include_package_data=True,
)
|