mirror of
https://github.com/wassname/denoising-diffusion-pytorch.git
synced 2026-08-21 11:14:33 +08:00
36 lines
946 B
Python
36 lines
946 B
Python
from setuptools import setup, find_packages
|
|
|
|
exec(open('denoising_diffusion_pytorch/version.py').read())
|
|
|
|
setup(
|
|
name = 'denoising-diffusion-pytorch',
|
|
packages = find_packages(),
|
|
version = __version__,
|
|
license='MIT',
|
|
description = 'Denoising Diffusion Probabilistic Models - Pytorch',
|
|
author = 'Phil Wang',
|
|
author_email = 'lucidrains@gmail.com',
|
|
url = 'https://github.com/lucidrains/denoising-diffusion-pytorch',
|
|
long_description_content_type = 'text/markdown',
|
|
keywords = [
|
|
'artificial intelligence',
|
|
'generative models'
|
|
],
|
|
install_requires=[
|
|
'accelerate',
|
|
'einops',
|
|
'ema-pytorch',
|
|
'pillow',
|
|
'torch',
|
|
'torchvision',
|
|
'tqdm'
|
|
],
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Intended Audience :: Developers',
|
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 3.6',
|
|
],
|
|
)
|