-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
32 lines (27 loc) · 906 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
28
29
30
31
32
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.bumpversion]
current_version = "0.0.0"
commit = "true"
tag = "true"
tag_name = "v{new_version}"
[project]
name = "structure-vision"
license = { file = "LICENSE" }
authors = [
{ name = "Luca Foppiano", email = "[email protected]" },
{ name = "Tomoya Mato", email = "[email protected]" }
]
maintainers = [
{ name = "Luca Foppiano", email = "[email protected]" },
{ name = "Tomoya Mato", email = "[email protected]" }
]
description = "Viewer for the structure extracted by Grobid on PDF documents"
readme = "README.md"
dynamic = ['version']
[tool.setuptools_scm]
[project.urls]
Homepage = "https://structure-vision.streamlit.app"
Repository = "https://github.com/lfoppiano/structure-vision"
Changelog = "https://github.com/lfoppiano/structure-vision/blob/main/CHANGELOG.md"