-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·42 lines (41 loc) · 1.04 KB
/
setup.py
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
from setuptools import setup, find_packages
from ldmseg.version import __version__
setup(
name='ldmseg',
packages=find_packages(),
version=__version__,
license='Attribution-NonCommercial 4.0 International',
description='A simple latent diffusion framework for panoptic segmentation and mask inpainting',
author='Wouter Van Gansbeke',
url='https://github.com/segments-ai/latent-diffusion-segmentation',
long_description_content_type='text/markdown',
keywords=[
'artificial intelligence',
'computer vision',
'generative models',
'segmentation',
],
install_requires=[
'torch',
'torchvision',
'einops',
'diffusers',
'transformers',
'xformers',
'accelerate',
'timm',
'scipy',
'opencv-python',
'pyyaml',
'easydict',
'hydra-core',
'termcolor',
'wandb',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3.11',
],
)