min-dalle-test/setup.py

30 lines
702 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-07 12:21:20 +00:00
# long_description=(Path(__file__).parent / "README.rst").read_text(),
version='0.3.3',
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=[
2022-07-07 12:21:20 +00:00
'torch>=1.11',
'typing_extensions>=4.1',
2022-07-03 19:40:58 +00:00
'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
]
)