-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 967 Bytes
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 967 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=62", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "manx"
version = "1.0.2"
description = "A toolkit for early Middle English lemmatization."
readme = "README.md"
license = { text = "GPL-3" }
authors = [
{ name = "Michał Adamczyk" }
]
keywords = [
"lemmatization", "deep learning", "neural networks", "Middle English", "NLP",
]
dependencies = [
"httpx",
"tqdm",
"beautifulsoup4",
"numpy",
"pydantic",
"pydantic-settings",
"torch",
"simplet5",
"fastapi[all]",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/mdm-code/manx"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-mock",
"pytest-cov",
"mypy",
"black",
]
[tool.setuptools.packages.find]
include = [
"manx",
"manx*",
]
[project.scripts]
manx = "manx.console:main"
[tool.black]
line-length = 79
[tool.pytest.ini_options]
addopts = "-p no:warnings"
[tool.mypy]
ignore_missing_imports = true