File size: 631 Bytes
ab8b628
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "image-classification-model"
version = "0.1.0"
description = "MNIST-compatible image classification model"
requires-python = ">=3.8"
dependencies = [
    "torch>=2.0.0",
    "transformers>=4.30.0",
    "Pillow>=9.0.0",
    "datasets>=2.0.0",
    "accelerate>=0.26.0"
]

[build-system]
requires = ["setuptools>=65.5.1", "wheel"]
build-backend = "setuptools.build_meta"


[tool.setuptools]
packages = ["image_classification_model"]

[tool.setuptools.package-dir]
image_classification_model = "src"

[tool.setuptools.entry_points]
console_scripts = [
    "train = bin.train:main",
    "subtract = bin.subtract:main"
]