-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (58 loc) · 1.43 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
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = [
"setuptools>=69.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["melo_benchmark*"]
exclude = ["tests*"]
[tool.setuptools.package-data]
skills_core = [
"resources/*.csv",
]
[project]
name = "melo-benchmark"
version = "1.0.0"
description = "Multilingual Entity Linking for Occupations (MELO) Benchmark."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"kaleido>=0.2.1",
"matplotlib>=3.9.2",
"numpy>=1.21.1",
"openai>=1.30.3",
"pandas>=2.2.2",
"psutil>=5.9.8",
"plotly>=5.24.1",
"python-dotenv>=1.0.1",
"rank-bm25>=0.2.2",
"rapidfuzz>=3.9.4",
"scikit-learn==1.5.2",
"scipy>=1.14.1",
"seaborn>=0.13.2",
"spacy>=3.7.5"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
with-torch = [
"accelerate>=0.26.0",
"bitsandbytes>=0.44.0",
"sentence-transformers>=2.7.0"
]
with-tf = [
"sentencepiece==0.1.96",
"tensorflow[and-cuda]>=2.17.0",
"tensorflow-addons>=0.23.0",
"tensorflow-hub>=0.16.1",
"tensorflow-text>=2.17.0"
]
[project.urls]
Homepage = "https://github.com/Avature/melo-benchmark"
Documentation = "https://github.com/Avature/melo-benchmark/docs"
Repository = "https://github.com/Avature/melo-benchmark"
Issues = "https://github.com/Avature/melo-benchmark/issues"