-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 816 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
from setuptools import setup, find_packages
install_requires = [
"numpy",
"torch",
"torchvision",
"transformers",
"pillow",
"huggingface_hub",
]
setup(
name="parediffusers",
author="Masamune Ishihara",
author_email="[email protected]",
description="The library `pared` down the features of `diffusers` implemented the minimum function to generate images without using huggingface/diffusers to understand the inner workings of the library.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="MIT License",
url="https://github.com/masaishi/parediffusers",
version="0.3.2",
python_requires=">=3.6",
install_requires=install_requires,
package_dir={"": "src"},
packages=find_packages("src"),
)