mirror of
https://github.com/lucidrains/DALLE2-pytorch.git
synced 2025-12-18 17:34:18 +01:00
60 lines
1.5 KiB
Python
60 lines
1.5 KiB
Python
from setuptools import setup, find_packages
|
|
exec(open('dalle2_pytorch/version.py').read())
|
|
|
|
setup(
|
|
name = 'dalle2-pytorch',
|
|
packages = find_packages(exclude=[]),
|
|
include_package_data = True,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'dalle2_pytorch = dalle2_pytorch.cli:main',
|
|
'dream = dalle2_pytorch.cli:dream'
|
|
],
|
|
},
|
|
version = __version__,
|
|
license='MIT',
|
|
description = 'DALL-E 2',
|
|
author = 'Phil Wang',
|
|
author_email = 'lucidrains@gmail.com',
|
|
long_description_content_type = 'text/markdown',
|
|
url = 'https://github.com/lucidrains/dalle2-pytorch',
|
|
keywords = [
|
|
'artificial intelligence',
|
|
'deep learning',
|
|
'text to image'
|
|
],
|
|
install_requires=[
|
|
'accelerate',
|
|
'click',
|
|
'open-clip-torch>=2.0.0,<3.0.0',
|
|
'clip-anytorch>=2.5.2',
|
|
'coca-pytorch>=0.0.5',
|
|
'ema-pytorch>=0.0.7',
|
|
'einops>=0.7.0',
|
|
'embedding-reader',
|
|
'kornia>=0.5.4',
|
|
'numpy',
|
|
'packaging',
|
|
'pillow',
|
|
'pydantic>=2',
|
|
'pytorch-warmup',
|
|
'resize-right>=0.0.2',
|
|
'rotary-embedding-torch',
|
|
'torch>=1.10',
|
|
'torchvision',
|
|
'tqdm',
|
|
'vector-quantize-pytorch',
|
|
'x-clip>=0.4.4',
|
|
'webdataset>=0.2.5',
|
|
'fsspec>=2022.1.0',
|
|
'torchmetrics[image]>=0.8.0'
|
|
],
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Intended Audience :: Developers',
|
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 3.6',
|
|
],
|
|
)
|