CoolFace
Apppublic

tom-doerr/logo_generator

sourceHugging Faceapache-2.0updated 4y agoView on Hugging Face
3likes
setup.cfg47 linesDownload Raw Back to root
1[metadata]2name = dalle-mini3version = attr: dalle_mini.__version__4author = Boris Dayma et al.5author_email = boris.dayma@gmail.com6description = DALL·E mini - Generate images from a text prompt7long_description = file: README.md8long_description_content_type = text/markdown9url = https://github.com/borisdayma/dalle-mini10project_urls =11    Bug Tracker = https://github.com/borisdayma/dalle-mini/issues12classifiers =13    Programming Language :: Python :: 314    License :: OSI Approved :: Apache Software License15    Operating System :: OS Independent16    Topic :: Scientific/Engineering :: Artificial Intelligence17    Development Status :: 3 - Alpha18    Intended Audience :: Developers19 20[options]21package_dir =22    =src23packages = find:24python_requires = >=3.625install_requires =26    transformers27    einops28    unidecode29    ftfy30    emoji31    pillow32    jax33    flax34    wandb35 36[options.extras_require]37dev =38    tqdm39    optax40    braceexpand41    datasets[streaming]42    black[jupyter]43    isort44 45[options.packages.find]46where = src47