forked from marfors/paradigmextract
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.15 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
46
47
48
49
[project]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
name = "paradigmextract"
version = "0.1.0"
description = "Paradigm learning and paradigm prediction"
authors = [{ name = "Språkbanken", email = "[email protected]" }]
dependencies = []
readme = "README.md"
requires-python = ">= 3.9"
license = { text = "MIT" }
[project.urls]
"Bug Tracker" = "https://github.com/spraakbanken/paradigmextract/issues"
Homepage = "https://github.com/spraakbanken/paradigmextract"
Repository = "https://github.com/spraakbanken/paradigmextract"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"ruff>=0.1.13",
"pytest>=7.4.4",
"pytest-cov>=4.1.0",
"mypy>=1.8.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["paradigmextract"]
[tool.pdm.dev-dependencies]
dev = [
"ruff>=0.4.4",
"pytest>=8.2.1",
"pytest-cov>=5.0.0",
"mypy>=1.10.0",
]