-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.11 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
55
[project]
name = "wsd"
version = "0.0.1rc0"
description = "Multi-lingual Word Sense Disambiguation."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
authors = [
{ name = "Arnaud Rachez", email = "arnaud@linalgo.com" },
{ name = "Farid Taba", email = "farid.t@gmail.com" },
{ name = "Jack Dryvers", email = "j.dryvers@proton.me" },
{ name = "Jean Cadic", email = "me@cadic.jp" },
]
dependencies = [
"fugashi[unidic]",
"google-genai",
"linalgo==0.1.4",
"mesop",
"numpy",
"pillow",
"rich",
"scikit-learn",
"typer",
]
[project.optional-dependencies]
dev = ["pytest", "pre-commit"]
all = [
"fugashi[unidic]",
"google-genai",
"linalgo==0.1.4",
"mesop",
"numpy",
"pillow",
"rich",
"scikit-learn==1.7.1",
"typer",
]
[project.urls]
Homepage = "https://github.com/linalgo/wsd"
Issues = "https://github.com/linalgo/wsd/issues"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["wsd*"]