-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (61 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (61 loc) · 1.42 KB
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
64
65
66
67
68
69
70
71
72
73
# pyproject.toml
[project]
name = "hit-archlens"
version = "1.0.0"
description = "멀티 클라우드 아키텍처 다이어그램 자동 분석 프레임워크"
requires-python = ">=3.10,<3.13"
dependencies = [
# CLI Framework
"click>=8.1.0",
# Data Processing
"pandas>=2.0.0",
"numpy>=1.24.0",
"pyyaml>=6.0.0",
"python-dotenv>=1.0.0",
# Computer Vision
"torch>=2.0.0",
"torchvision>=0.15.0",
"opencv-python>=4.8.0",
"pillow>=10.0.0",
"open-clip-torch>=2.20.0",
"faiss-cpu>=1.7.4", # 또는 faiss-gpu
"easyocr>=1.7.0",
"ultralytics>=8.0.0", # YOLOv8, YOLOv9, YOLOv10 등
# Language Models
"openai>=1.0.0",
"anthropic>=0.7.0",
"requests>=2.31.0",
# Utilities
"tqdm>=4.65.0",
"rapidfuzz>=3.0.0",
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
# AWS
"boto3>=1.28.0",
]
[dependency-groups]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.6.0",
"flake8>=6.1.0",
]
[project.scripts]
archlens = "backend.tools.cli:cli"
[tool.setuptools]
packages = ["backend"]
[tool.setuptools.package-data]
backend = ["**/*.yaml", "**/*.yml", "**/*.json"]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false