-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (37 loc) · 1.34 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "setuptools_ocrd"
version = "0.0.19"
authors = [
{name = "Mike Gerber", email = "[email protected]"},
]
description = "Manage your package version through ocrd-tool.json"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["ocr-d", "setuptools"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Build Tools",
]
dynamic = ["dependencies", "optional-dependencies"]
[project.urls]
Homepage = "https://github.com/qurator-spk/setuptools_ocrd"
Repository = "https://github.com/qurator-spk/setuptools_ocrd.git"
[tool.setuptools.packages.find]
where = ["."]
include = ["setuptools_ocrd"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies.dev = {file = ["requirements-dev.txt"]}
[project.entry-points."setuptools.finalize_distribution_options"]
setuptools_ocrd = "setuptools_ocrd._integration.setuptools:get_ocrd_tool_version"
[project.entry-points."setuptools.file_finders"]
setuptools_ocrd = "setuptools_ocrd._integration.setuptools:file_finder_ocrd_tool"
[tool.ruff]
select = ["E", "F", "I"]
ignore = []