Upload folder using huggingface_hub
Browse files- pyproject.toml +44 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "liquid-ai-hackathon-2025"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.12"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"bitsandbytes>=0.48.1; sys_platform == 'linux'",
|
| 9 |
+
"datasets>=4.2.0",
|
| 10 |
+
"openai-agents>=0.3.3",
|
| 11 |
+
"pandas>=2.3.3",
|
| 12 |
+
"peft>=0.17.1",
|
| 13 |
+
"torch>=2.8.0",
|
| 14 |
+
"transformers @ git+https://github.com/huggingface/transformers.git@0c9a72e4576fe4c84077f066e585129c97bfd4e6; sys_platform == 'linux'",
|
| 15 |
+
"transformers>=4.57.0; sys_platform != 'linux'",
|
| 16 |
+
"wandb>=0.22.2",
|
| 17 |
+
]
|
| 18 |
+
|
| 19 |
+
[dependency-groups]
|
| 20 |
+
dev = [
|
| 21 |
+
"ruff>=0.14.0",
|
| 22 |
+
]
|
| 23 |
+
|
| 24 |
+
[tool.ruff]
|
| 25 |
+
line-length = 100
|
| 26 |
+
target-version = "py312"
|
| 27 |
+
|
| 28 |
+
[tool.ruff.lint]
|
| 29 |
+
select = [
|
| 30 |
+
"E", # pycodestyle errors
|
| 31 |
+
"W", # pycodestyle warnings
|
| 32 |
+
"F", # pyflakes
|
| 33 |
+
"I", # isort
|
| 34 |
+
"B", # flake8-bugbear
|
| 35 |
+
"C4", # flake8-comprehensions
|
| 36 |
+
"UP", # pyupgrade
|
| 37 |
+
]
|
| 38 |
+
ignore = [
|
| 39 |
+
"E501", # line too long (handled by formatter)
|
| 40 |
+
]
|
| 41 |
+
|
| 42 |
+
[tool.ruff.format]
|
| 43 |
+
quote-style = "double"
|
| 44 |
+
indent-style = "space"
|