File size: 669 Bytes
2948983
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"

[project]
name = "math-grid-drawer-simulation"
version = "0.1.0"
description = "ํ•„๊ธฐ ์ˆ˜์‹ stroke ๊ทธ๋ฆฌ๋”ฉ์„ ์‹คํ—˜ํ•˜๋Š” ๋…๋ฆฝ Python ๋“œ๋กœ์›Œ"
requires-python = ">=3.11"
dependencies = ["Pillow>=10,<12"]

[project.optional-dependencies]
recognition = ["numpy>=1.26,<3", "torch>=2.2,<3", "transformers==4.47.0", "safetensors>=0.4,<1"]
research = [
  "numpy>=1.26,<3",
  "opencv-contrib-python-headless>=4.10,<5",
  "scikit-learn>=1.5,<2",
  "torch>=2.2,<3",
]

[project.scripts]
math-grid-drawer = "math_grid_drawer.app:main"

[tool.setuptools.packages.find]
where = ["src"]