-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.08 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
[build-system]
requires = ["setuptools >= 61.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mpnrl"
dynamic = ["version"]
description = "Multiple Positives and Negatives Ranking Loss"
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"sentence-transformers>=3.3.1",
]
requires-python = ">=3.9"
authors = [
{ name = "Kush Dubey", email = "[email protected]" },
]
maintainers = [
{ name = "Kush Dubey", email = "[email protected]" },
]
[project.optional-dependencies]
demos = [
"accelerate>=0.20.3",
"datasets",
"jupyter>=1.0.0",
"polars>=1.0.0",
"pydantic>=2.0.0",
"seaborn>=0.13.0",
"typed-argument-parser>=1.10.1",
"wandb",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "mpnrl.__version__"}
[tool.ruff]
include = ["*.py"]
line-length = 88
indent-width = 4
extend-include = ["*.ipynb"]
[project.urls]
Homepage = "https://github.com/kddubey/mpnrl"
Issues = "https://github.com/kddubey/mpnrl/issues"