-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (49 loc) · 1.86 KB
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
54
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "similarity-ensemble"
version = "1.1.0"
description = "A lightweight, reproducible toolkit and benchmark for semantic similarity ensembles (stacking)."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Jorge Martinez-Gil" }]
keywords = [
"semantic similarity",
"semantic textual similarity",
"ensemble learning",
"stacking",
"semantic similarity benchmark",
"word similarity",
"natural language processing",
"grammatical evolution",
"explainable AI",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
]
dependencies = ["numpy>=1.21", "pandas>=1.3", "matplotlib>=3.4"]
[project.optional-dependencies]
wordnet = ["nltk>=3.6"]
test = ["pytest>=7.0"]
all = ["nltk>=3.6", "pytest>=7.0"]
[project.urls]
Homepage = "https://github.com/jorge-martinez-gil/similarity-ensemble"
Repository = "https://github.com/jorge-martinez-gil/similarity-ensemble"
Issues = "https://github.com/jorge-martinez-gil/similarity-ensemble/issues"
Changelog = "https://github.com/jorge-martinez-gil/similarity-ensemble/blob/main/CHANGELOG.md"
Documentation = "https://github.com/jorge-martinez-gil/similarity-ensemble/tree/main/docs"
Paper = "https://www.sciencedirect.com/science/article/pii/S2666827022000986"
[project.scripts]
similarity-ensemble-data = "similarity_ensemble.datasets:_cli"
[tool.setuptools]
packages = ["similarity_ensemble"]