-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (53 loc) · 1.57 KB
/
pyproject.toml
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
[project]
name = "OMR - Archivio Ricordi"
version = ""
description = ""
authors = [
{name = "Federico Simonetta", email = "[email protected]"},
]
dependencies = [
"torchvision>=0.18.0",
"pandas>=2.2.2",
"krippendorff>=0.6.1",
"seaborn>=0.13.2",
"matplotlib>=3.8.4",
"pillow>=10.3.0",
"torchmetrics>=1.3.2",
"opencv-python>=4.9.0.80",
"papermill>=2.6.0",
"scikit-image>=0.19.1",
"joblib>=1.1.0",
"toml>=0.10.2",
"scikit-learn>=0.24",
"tqdm>=4.62.3",
"flask>=2.0.2",
"waitress>=2.0.0",
"plotly>=5.6.0",
"notebook>=7.1.3",
"auto-sklearn==0.15.0",
]
requires-python = ">=3.9,<3.11"
license = {text = "MIT"}
[tool]
[tool.pdm]
distribution = false
[tool.pdm.options]
install = ["--no-self"]
add = ["--no-isolation", "--no-self"]
[tool.pdm.scripts]
preprocess = {call = "omr.preprocess:main('config.toml')"}
data_entry = {call = "omr.server:run()"}
data_entry_debug = { cmd = "flask run -p 2022", env = { FLASK_APP="omr.server", FLASK_ENV="development" } }
check_blob_jsons = {call = "omr.check:check_blob_jsons()"}
plot_normal_indices = {call = "omr.check:plot_normal_indices()"}
dataset_analysis = "papermill Confusion_Matrix_Annotation.ipynb Confusion_Matrix_Annotation.ipynb"
dataset_creation = "papermill Create_Dataset.ipynb Create_Dataset.ipynb"
binary = "papermill ./OMR_Binary.ipynb ./OMR_Binary.ipynb"
multiclass = "papermill ./OMR_Multiclass.ipynb ./OMR_Multiclass.ipynb"
[tool.pdm.dev-dependencies]
ipython = [
"ipdb>=0.13.9",
]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"