File size: 1,011 Bytes
f0fd53e | 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 | [project]
name = "liquid-ai-hackathon-2025"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"bitsandbytes>=0.48.1; sys_platform == 'linux'",
"datasets>=4.2.0",
"openai-agents>=0.3.3",
"pandas>=2.3.3",
"peft>=0.17.1",
"torch>=2.8.0",
"transformers @ git+https://github.com/huggingface/transformers.git@0c9a72e4576fe4c84077f066e585129c97bfd4e6; sys_platform == 'linux'",
"transformers>=4.57.0; sys_platform != 'linux'",
"wandb>=0.22.2",
]
[dependency-groups]
dev = [
"ruff>=0.14.0",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long (handled by formatter)
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space" |