-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
35 lines (32 loc) · 989 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
33
34
35
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "alto-tools"
version = "0.1.0"
authors = [
{name = "Clemens Neudecker"}
]
description = "Perform various operations on ALTO xml files"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["optical character recognition", "digital libraries"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing",
]
dependencies = [
# none
]
[project.scripts]
alto-tools = "alto_tools.alto_tools:main"
[project.urls]
Homepage = "https://github.com/cneud/alto-tools"
Repository = "https://github.com/cneud/alto-tools.git"