-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (50 loc) · 1.66 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
50
51
52
53
[project]
name = "parallel-corpus"
version = "0.2.0"
description = "Parallel corpus as a graph."
authors = [
{ name = "Språkbanken Text", email = "[email protected]" },
{ name = "Kristoffer Andersson", email = "[email protected]" },
]
dependencies = [
"diff-match-patch>=20230430",
"more-itertools>=10.2.0",
"typing-extensions>=4.11.0",
"strenum>=0.4.15", # For StrEnum i Python < 3.10
]
requires-python = ">=3.9"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
# "uncomment if you test on these interpreters:",
# "Programming Language :: Python :: Implementation :: IronPython",
# "Programming Language :: Python :: Implementation :: Jython",
# "Programming Language :: Python :: Implementation :: Stackless",
"Topic :: Utilities",
]
[dependency-groups]
dev = [
"mypy>=1.12.1",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"ruff>=0.7.0",
"syrupy>=4.7.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"