doc-to-lora/setup.py

13 lines
296 B
Python
Raw Permalink Normal View History

2025-01-17 17:41:10 +00:00
# read the contents of the README file
from pathlib import Path
2025-05-27 21:18:15 +09:00
from setuptools import setup
2025-01-17 17:41:10 +00:00
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
long_description=long_description,
long_description_content_type="text/markdown",
)