[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"