-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 836 Bytes
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
[project]
name = "transnormer"
version = "0.1.0"
description = "A lexical normalizer for historical spelling variants using a transformer architecture."
authors = [
{ name = "Yannic Bracke (BBAW)", email = "yannic.bracke@bbaw.de" },
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3.9+",
"Operating System :: OS Independent",
]
dependencies = [
"datasets==2.18.0",
"lxml>=4.9.2",
"matplotlib>=3.6.3",
"nltk>=3.8.1",
"tomli>=2.0.1",
"transformers[torch]>=4.31.0",
"python_Levenshtein==0.21.1",
"numpy==1.24.2",
]
[project.urls]
"Homepage" = "https://github.com/ybracke/transnormer"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.mypy]
ignore_missing_imports = true