-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 821 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (35 loc) · 821 Bytes
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
from setuptools import setup, find_packages
setup(
name="autoweld_vision",
version="0.1.0",
packages=find_packages(),
install_requires=[
"torch>=2.3.1",
"torchvision>=0.18.1",
"anomalib==1.1.0",
"fastapi",
"uvicorn",
"opencv-python<4.10",
"pillow",
"matplotlib",
"seaborn",
"pandas",
"scikit-learn",
"scikit-image",
"tqdm",
"wandb",
"hydra-core",
"omegaconf",
"lightning",
"kornia",
"timm",
"einops",
"imgaug",
"FrEIA",
"onnx",
"numpy<2.0",
],
author="Adib Shaikh",
description="Modular industrial anomaly detection framework for automotive welding quality control.",
python_requires=">=3.11",
)