-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 867 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="oms_diffusion",
version="0.0.1",
description="A description of your project",
author="Viktor Frede Andersen",
author_email="[email protected]",
url="https://github.com/viktorfa/oms_diffusion",
packages=find_packages(include=["oms_diffusion", "oms_diffusion.*"]),
include_package_data=False,
install_requires=[
"torch",
"torchvision",
"numpy",
"diffusers",
"opencv-python",
"transformers",
"safetensors",
"controlnet-aux",
"accelerate",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International",
"Programming Language :: Python :: 3.10",
],
)