-
Notifications
You must be signed in to change notification settings - Fork 154
/
setup.py
29 lines (27 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
setup(
name="lycoris_lora",
packages=find_packages(),
version="3.1.1.post1",
url="https://github.com/KohakuBlueleaf/LyCORIS",
description="Lora beYond Conventional methods, Other Rank adaptation Implementations for Stable diffusion",
author="Shih-Ying Yeh(KohakuBlueLeaf), Yu-Guan Hsieh, Zhidong Gao",
author_email="[email protected]",
zip_safe=False,
install_requires=["torch", "einops", "toml", "tqdm"],
python_requires=">=3.10",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: GPU :: NVIDIA CUDA :: 11.8",
"Environment :: GPU :: NVIDIA CUDA :: 12",
"Environment :: GPU :: NVIDIA CUDA :: 12 :: 12.1",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
],
)