-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 913 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
36
37
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "TEI-IIIF"
version = "0.9.2"
authors = [
{ name="Joshua Phillips", email="[email protected]" },
]
description = "A Python CLI app that pulls data from TEI-XML files and transforms them to conformant IIIF Annotation manifests."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"lxml",
"natsort",
"pyyaml",
"requests"
]
[project.urls]
"Homepage" = "https://github.com/joshuaAPhillips/tei-iiif"
"Bug Tracker" = "https://github.com/joshuaAPhillips/tei-iiif/issues"
[tools.setuptools]
include-package-data = true
[tools.setuptools.packages.find]
where = "tei_iiif"
[tool.setuptools.package-data]
"*" = ["*.yaml"]