-
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (15 loc) · 679 Bytes
/
Copy pathsetup.py
File metadata and controls
17 lines (15 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Strictly for use outside of the WebUI. This file will allow you to install Unprompted via pip. Example:
# pip install unprompted@git+https://github.com/ThereforeGames/unprompted
from setuptools import setup
setup(
name='Unprompted',
version='11.2.0',
package_dir={'unprompted': '.'},
packages=['unprompted.lib_unprompted', 'unprompted.shortcodes', 'unprompted.shortcodes.basic', 'unprompted.shortcodes.stable_diffusion', 'unprompted.templates', 'unprompted.docs'],
package_data={
'unprompted.lib_unprompted': ['*.json'],
'unprompted.templates': ['common/*.txt'],
'unprompted.docs': ['*.md']
},
include_package_data=True,
)