-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (46 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "smashcima"
authors = [
{ name="Jiří Mayer", email="[email protected]" },
]
dependencies = [
"numpy",
"opencv-contrib-python",
"requests",
"tqdm",
"nameof",
"punq",
"muscima",
"scikit-image", # needed for `muscima`
]
description = "Training data synthesizer for OMR"
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/OMR-Research/Smashcima"
Source = "https://github.com/OMR-Research/Smashcima"
Issues = "https://github.com/OMR-Research/Smashcima/issues"
[project.optional-dependencies]
jupyter = [
"jupyter",
"voila",
"ipympl",
"ipycytoscape"
]
gradio = [
"gradio",
"coolname"
]
[tool.hatch.version]
path = "smashcima/__init__.py"
[tool.hatch.build]
include = ["/smashcima"]