mirror of
https://github.com/SakanaAI/doc-to-lora.git
synced 2026-04-25 00:06:20 +02:00
13 lines
296 B
Python
13 lines
296 B
Python
|
|
# 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",
|
||
|
|
)
|