2022-07-01 22:16:55 +00:00
|
|
|
import setuptools
|
2022-07-02 03:39:48 +00:00
|
|
|
from pathlib import Path
|
2022-07-01 22:16:55 +00:00
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name='min-dalle',
|
|
|
|
description = 'min(DALL·E)',
|
2022-07-02 03:39:48 +00:00
|
|
|
long_description=(Path(__file__).parent / "README").read_text(),
|
2022-07-02 14:05:16 +00:00
|
|
|
version='0.2.10',
|
2022-07-01 22:16:55 +00:00
|
|
|
author='Brett Kuprel',
|
2022-07-01 23:44:24 +00:00
|
|
|
author_email='brkuprel@gmail.com',
|
2022-07-02 03:39:48 +00:00
|
|
|
url='https://github.com/kuprel/min-dalle',
|
2022-07-01 22:16:55 +00:00
|
|
|
packages=[
|
|
|
|
'min_dalle',
|
|
|
|
'min_dalle.models'
|
|
|
|
],
|
|
|
|
license='MIT',
|
|
|
|
install_requires=[
|
2022-07-02 13:06:22 +00:00
|
|
|
'torch>=1.10.0',
|
|
|
|
'typing_extensions>=4.1.0'
|
2022-07-01 22:16:55 +00:00
|
|
|
],
|
|
|
|
keywords = [
|
|
|
|
'artificial intelligence',
|
|
|
|
'deep learning',
|
2022-07-01 23:44:24 +00:00
|
|
|
'text-to-image',
|
|
|
|
'pytorch'
|
2022-07-01 22:16:55 +00:00
|
|
|
]
|
|
|
|
)
|