Initial commit

Co-Authored-By: Alexander Panfilov <sasha_pusha@mail.de>
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Peter Romov
2026-03-25 02:09:26 +00:00
co-authored by Alexander Panfilov Claude
commit 5b6058b3c4
759 changed files with 37753 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
[project]
name = "claudini"
version = "0.1.0"
description = "Claudini: Automated Research Discovers State-of-the-Art Adversarial Attack Algorithms"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"accelerate>=1.13.0",
"numpy>=2.0",
"pyyaml>=6.0",
"scipy>=1.10",
"torch>=2.0",
"tqdm>=4.60",
"transformers>=4.40",
"typer>=0.9",
"datasets>=2.14",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["claudini"]
[tool.ruff]
line-length = 120
target-version = "py314"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[dependency-groups]
dev = [
"ruff>=0.15.7",
]