-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.41 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
[tool.poetry]
name = "inceptalytics"
version = "0.1.1"
description = "INCEpTALYTICS is a package for analysing INCEpTION annotation projects."
authors = [
"Marius Hamacher <[email protected]>",
"Torsten Zesch <[email protected]>",
]
maintainers = [
"Marius Hamacher <[email protected]>",
]
readme = "README.md"
homepage = "https://catalpa-cl.github.io/inceptalytics/index.html"
repository = "https://github.com/catalpa-cl/inception-analytics"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic"
]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
krippendorff = "^0.6.1"
pygamma-agreement = "^0.5.6"
pandas = "^2.1.1"
scikit-learn = "^1.3.1"
pycaprio = "^0.2.1"
dkpro-cassis = "^0.8.0"
urllib3 = "^1.26.15"
[tool.poetry.group.dev.dependencies]
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
m2r2 = "^0.3.3.post2"
furo = "^2023.9.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"