Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
daemon committed Nov 12, 2022
1 parent 4b2c5fa commit 0f7b809
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import setuptools

setuptools.setup(
name='daam',
version=open('version.txt').read(),
author='Raphael Tang',
license='MIT',
url='https://github.com/castorini/daam',
author_email='[email protected]',
description='What the DAAM: Interpreting Stable Diffusion Using Cross Attention.',
install_requires=[
'transformers',
'diffusers',
'spacy',
'gradio',
'ftfy',
'transformers',
'pandas'
],
packages=setuptools.find_packages(),
python_requires='>=3.10'
)
1 change: 1 addition & 0 deletions version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1

0 comments on commit 0f7b809

Please sign in to comment.