-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.43 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
56
57
58
59
60
61
[project]
name = "plurel"
requires-python = ">=3.12"
version = "0.1.0"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.setuptools.packages.find]
where = ["."]
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64"]
[tool.pixi.pypi-dependencies]
plurel = { path = ".", editable = true }
torch = ">=2.8.0"
sentence_transformers = ">=5.2.2,<6"
einops = ">=0.8.2,<0.9"
strictfire = ">=0.4.1,<0.5"
maturin = { version = ">=1.11.5,<2", extras = ["patchelf"] }
ml_dtypes = ">=0.5.4,<0.6"
orjson = ">=3.11.7,<4"
polars = ">=1.37.1,<2"
maturin_import_hook = ">=0.3.0,<0.4"
matplotlib = ">=3.10.8,<4"
scikit-learn = "<1.6.0"
relbench = {git = "https://github.com/snap-stanford/relbench", rev = "71f5d50f3af25aa34ac1b9d3e093fa6d8e9b8459", extras = ["full"]}
[tool.pixi.dependencies]
pytest = ">=9.0.1,<10"
pytest-xdist = ">=3.8.0,<4"
pytest-sugar = ">=1.1.1,<2"
sqlalchemy = ">=2.0.45,<3"
pytest-env = ">=1.2.0,<2"
ipython = ">=9.9.0,<10"
pip = ">=25.3,<26"
huggingface_hub = ">=1.3.7,<2"
datasets = ">=4.5.0,<5"
wandb = ">=0.24.1,<0.25"
rust = ">=1.92.0,<2"
uv = ">=0.9.29,<1"
ruff = ">=0.15.0,<1"
pre-commit = ">=4.5.1,<5"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E402", "E501", "E721", "E741", "F841"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["test"]
env = ["KMP_DUPLICATE_LIB_OK=TRUE"]