mirror of
https://github.com/lucidrains/DALLE2-pytorch.git
synced 2026-02-22 10:44:20 +01:00
scaffold
This commit is contained in:
28
setup.py
Normal file
28
setup.py
Normal file
@@ -0,0 +1,28 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name = 'dalle2-pytorch',
|
||||
packages = find_packages(exclude=[]),
|
||||
version = '0.0.1',
|
||||
license='MIT',
|
||||
description = 'DALL-E 2',
|
||||
author = 'Phil Wang',
|
||||
author_email = 'lucidrains@gmail.com',
|
||||
url = 'https://github.com/lucidrains/dalle2-pytorch',
|
||||
keywords = [
|
||||
'artificial intelligence',
|
||||
'deep learning',
|
||||
'text to image'
|
||||
],
|
||||
install_requires=[
|
||||
'einops>=0.4',
|
||||
'torch>=1.6',
|
||||
],
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'Intended Audience :: Developers',
|
||||
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user