forked from baudm/parseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
27 lines (23 loc) · 889 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "strhub"
version = "1.1.0"
description = "Scene Text Recognition Model Hub: A collection of deep learning models for Scene Text Recognition"
authors = [
{name = "Darwin Bautista", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["optional-dependencies"]
[project.urls]
Homepage = "https://github.com/baudm/parseq"
[tool.setuptools]
packages = ["strhub"]
license-files = ["NOTICE", "LICENSE", "strhub/models/*/LICENSE"]
[tool.setuptools.dynamic]
optional-dependencies.train = { file = ["requirements/train.txt"] }
optional-dependencies.test = { file = ["requirements/test.txt"] }
optional-dependencies.bench = { file = ["requirements/bench.txt"] }
optional-dependencies.tune = { file = ["requirements/tune.txt"] }