Doc-to-LoRA release

This commit is contained in:
51616 2026-02-27 03:47:04 +00:00
commit 1abe8ae16d
92 changed files with 22131 additions and 0 deletions

12
setup.py Normal file
View file

@ -0,0 +1,12 @@
# read the contents of the README file
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
long_description=long_description,
long_description_content_type="text/markdown",
)