-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 877 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 877 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/lint_ii"]
[tool.hatch.build.targets.sdist]
exclude = [
"src/visualizer/",
"examples_for_visualizer/",
"index.html",
"uv.lock",
"environment.yml",
]
[project]
name = "lint_ii"
version = "0.1.1"
description = "LiNT-II is a readability assessment tool for Dutch."
authors = [
{name = "Jenia Kim"}
]
license = {text = "EUPL"}
keywords = ["readability", "dutch", "nlp"]
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"spacy>=3.7,<3.8",
"numpy>=1.25.0,<2.0",
"pyarrow>=21.0,<22.0",
"mistune>=3.1,<3.2",
]
[project.optional-dependencies]
notebook = ["ipykernel", "jupyter"]
[project.urls]
homepage = "https://vanboefer.github.io/lint_ii/"
repository = "https://vanboefer.github.io/lint_ii/"