forked from cneud/alto-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.08 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
[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.optional-dependencies]
dev = [
'black',
'pytest-cov',
]
[tool.setuptools.packages.find]
where = ['src']
[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"