-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (54 loc) · 1.58 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
setup(
name='wfd',
version='0.6.0',
description='Wave Function Diffusion',
url='https://github.com/wdcqc/WaveFunctionDiffusion',
author='wdcqc',
author_email='119406052+wdcqc@users.noreply.github.com',
license='creativeml-openrail-m',
packages=find_packages("."),
package_data={'': [
'mpqapi/*.so',
'mpqapi/*.dll',
'webui/*.json',
'webui/templates/*.css',
'scmap/tile_data/*',
'scmap/tile_data/wfc/*',
'scmap/tile_data/symmetry/*',
'scmap/default/*',
]},
include_package_data=True,
python_requires=">=3.7.0",
install_requires=[
"accelerate",
"bitsandbytes",
"diffusers",
"doki_theme_jupyter",
"einops",
"gradio",
"huggingface_hub",
"numpy",
"opencv_python",
"packaging",
"Pillow",
"torch",
"torchinfo",
"torchvision",
"tqdm",
"transformers"
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Creative OpenRAIL-M',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 4.0',
],
)