-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
30 lines (29 loc) · 838 Bytes
/
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
30
from setuptools import setup,find_packages
setup(
name = 'sd_embed'
, version = '1.240829.1'
, license = 'Apache License'
, author = "Andrew Zhu"
, author_email = 'xhinker@hotmail.com'
, packages = find_packages('src')
, package_dir = {'': 'src'}
, url = 'https://github.com/xhinker/sd_embed'
, keywords = 'diffusers stable-diffusion embedding'
, install_requires = [
'optimum-quanto'
, 'torch'
, 'torchvision'
, 'torchaudio'
, 'sentencepiece'
, 'accelerate'
, 'peft'
, 'transformers'
, 'diffusers'
, 'lark'
, 'protobuf'
, 'ipykernel'
, 'ipywidgets'
, 'safetensors'
]
, include_package_data=True
)