File size: 1,099 Bytes
8377658
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from setuptools import setup, find_packages

setup(
    name='draggan',
    packages=find_packages(),
    version='1.1.6',
    package_data={
        'draggan': ['deprecated/stylegan2/op/fused_bias_act.cpp', 
                    'deprecated/stylegan2/op/upfirdn2d.cpp',
                    'deprecated/stylegan2/op/fused_bias_act_kernel.cu',
                    'deprecated/stylegan2/op/upfirdn2d_kernel.cu',
                    'stylegan2/torch_utils/ops/bias_act.cpp', 
                    'stylegan2/torch_utils/ops/upfirdn2d.cpp',
                    'stylegan2/torch_utils/ops/bias_act.cu',
                    'stylegan2/torch_utils/ops/upfirdn2d.cu',
                    'stylegan2/torch_utils/ops/bias_act.h', 
                    'stylegan2/torch_utils/ops/upfirdn2d.h', 
                    ], 
    },
    include_package_data=True,
    install_requires=[
        'gradio==3.34.0',
        'tqdm',
        'torch>=1.8',
        'torchvision',
        'numpy',
        'ninja',
        'fire',
        'imageio',
        'imageio-ffmpeg',
        'scikit-image',
        'IPython',
    ]
)