-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
63 lines (61 loc) · 1.78 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*- coding: utf-8 -*-
# Copyright (c) XiMing Xing. All rights reserved.
# Author: XiMing Xing
from setuptools import setup, find_packages
setup(
name='vectorfusion-pytorch',
packages=find_packages(),
version='1.0.0',
license='MIT',
description='vectorfusion',
author='XiMing Xing',
author_email='ximingxing@gmail.com',
url='https://github.com/ximinng/VectorFusion-pytorch',
long_description_content_type='text/markdown',
keywords=[
'artificial intelligence',
'aigc',
'generative models',
'vector graphic'
],
install_requires=[
'omegaconf', # YAML processor
'accelerate', # Hugging Face - pytorch distributed configuration
'diffusers==0.20.2', # Hugging Face - diffusion models
'transformers', # Hugging Face - transformers
'safetensors',
'xformers',
'einops',
'pillow',
'torch>=1.13.1',
'torchvision',
'tensorboard',
'torchmetrics',
'triton',
'numba',
'tqdm', # progress bar
'ftfy',
'regex',
'timm', # computer vision models
"numpy", # numpy
'scikit-learn',
'scikit-fmm',
'scipy',
'scikit-image',
'Pillow', # keep the PIL.Image.Resampling deprecation away,
'matplotlib',
'visdom',
'wandb', # weights & Biases
'opencv-python', # cv2
'BeautifulSoup4',
'freetype-py', # font
'shapely' # SVG
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
],
)