-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 834 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
from setuptools import setup, find_packages
install_requires = [
'opencv-python',
'tqdm',
'Pillow',
'torch',
'transformers',
'diffusers',
'accelerate',
]
setup(
name='viddiffusion',
author='Masamune Ishihara',
author_email='[email protected]',
maintainer='Masamune Ishihara',
maintainer_email='[email protected]',
description="VidDiffusion is a Python library that provides vid2vid pipeline by using Hugging Face's `diffusers`.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license='Apache License 2.0',
url='https://github.com/masaishi/VidDiffusion',
version=open('viddiffusion/__init__.py').readlines()[-1].split()[-1].strip().strip("'"),
python_requires='>=3.6',
install_requires=install_requires,
packages=find_packages()
)