min-dalle-test/setup.py

30 lines
705 B
Python
Raw Normal View History

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-03 20:49:38 +00:00
long_description=(Path(__file__).parent / "README.rst").read_text(),
version='0.2.16',
2022-07-01 22:16:55 +00:00
author='Brett Kuprel',
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=[
'torch>=1.10.0',
2022-07-03 19:40:58 +00:00
'typing_extensions>=4.1.0',
'numpy>=1.21',
2022-07-03 20:16:23 +00:00
'pillow>=7.1',
'requests>=2.23'
2022-07-01 22:16:55 +00:00
],
keywords = [
'artificial intelligence',
'deep learning',
'text-to-image',
'pytorch'
2022-07-01 22:16:55 +00:00
]
)