-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (34 loc) · 800 Bytes
/
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
import os
import pkg_resources
from setuptools import setup, find_packages
setup(
name="cad-diffusion",
version="1.0",
description="Package for the CAD diffusion model",
author="Nicolas Dufour",
# packages=find_packages(exclude=["tests*"]),
install_requires=[
"torch",
"torchvision",
"einops",
"transformers",
"diffusers",
"huggingface_hub",
],
packages=["cad"],
include_package_data=True,
extras_require={
"train": [
"hydra-core",
"lightning",
"torch-fidelity",
"pandas",
"wandb",
"timm",
"scikit-learn",
"webdataset==0.2.57",
"lovely_tensors",
],
"demo": ["gradio"],
},
)