You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
705 B

2 years ago
import setuptools
2 years ago
# from pathlib import Path
2 years ago
setuptools.setup(
name='min-dalle',
description = 'min(DALL·E)',
2 years ago
# long_description=(Path(__file__).parent / "README.rst").read_text(),
version='0.3.16',
2 years ago
author='Brett Kuprel',
author_email='brkuprel@gmail.com',
url='https://github.com/kuprel/min-dalle',
2 years ago
packages=[
'min_dalle',
'min_dalle.models'
],
license='MIT',
install_requires=[
2 years ago
'torch>=1.11',
'typing_extensions>=4.1',
2 years ago
'numpy>=1.21',
2 years ago
'pillow>=7.1',
'requests>=2.23'
2 years ago
],
keywords = [
'artificial intelligence',
'deep learning',
'text-to-image',
'pytorch'
2 years ago
]
)