-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
42 lines (35 loc) · 1.34 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
[tool.poetry]
name = "krippendorff"
version = "0.8.1-dev"
description = "Fast computation of the Krippendorff's alpha measure."
authors = ["Santiago Castro <sacastro@fing.edu.uy>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/pln-fing-udelar/fast-krippendorff"
repository = "https://github.com/pln-fing-udelar/fast-krippendorff"
keywords = ["Krippendorff", "alpha", "agreement", "reliability", "coding", "coders", "units", "values"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.poetry.dependencies]
python = "^3.9"
numpy = ">=1.21" # For NumPy Typing.
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = ">=7,<9"
[build-system]
requires = ["poetry_core"]
build-backend = "poetry.core.masonry.api"