File size: 1,080 Bytes
80de44d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
[metadata]
name = dalle-mini
version = attr: dalle_mini.__version__
author = Boris Dayma et al.
author_email = boris.dayma@gmail.com
description = DALL·E mini - Generate images from a text prompt
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/borisdayma/dalle-mini
project_urls =
Bug Tracker = https://github.com/borisdayma/dalle-mini/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Topic :: Scientific/Engineering :: Artificial Intelligence
Development Status :: 3 - Alpha
Intended Audience :: Developers
[options]
package_dir =
=src
packages = find:
python_requires = >=3.6
install_requires =
transformers==4.25.1
einops
unidecode
ftfy
emoji
pillow
jax==0.3.25
flax==0.6.3
orbax==0.0.23
wandb
[options.extras_require]
dev =
tqdm
optax
braceexpand
datasets[streaming]
black[jupyter]
isort
[options.packages.find]
where = src
|