| [project] |
| name = "alien-obfuscator" |
| version = "0.1.0" |
| description = "Add your description here" |
| readme = "README.md" |
| requires-python = "==3.13.5" |
| dependencies = [ |
| "gradio>=6.16.0", |
| "pytest>=9.0.3", |
| "pytest-mock>=3.14.0", |
| "pytest-anyio>=0.0.0", |
| "python-dotenv>=1.1.0", |
| "pyyaml>=6.0", |
| "requests>=2.32.0", |
| "ruff>=0.15.16", |
| "ty>=0.0.44", |
| "pytest-cov>=7.1.0", |
| "modal>=1.5.0", |
| "pydantic>=2.11.10,<=2.12.5", |
| "torch>=2.6.0", |
| "transformers>=4.45.0", |
| "bitsandbytes>=0.43.0", |
| "accelerate>=0.30.0", |
| ] |
|
|
| [build-system] |
| requires = ["hatchling"] |
| build-backend = "hatchling.build" |
|
|
| [tool.hatch.build.targets.wheel] |
| packages = ["src/alien_obfuscator"] |
|
|
| [tool.ruff] |
| target-version = "py313" |
| line-length = 120 |
|
|
| [tool.ruff.lint] |
| |
| select = ["E4", "E7", "E9", "F", "B"] |
|
|
| |
| ignore = ["E501"] |
|
|
| |
| unfixable = ["B"] |
|
|
| |
| [tool.ruff.lint.per-file-ignores] |
| "__init__.py" = ["E402"] |
| "**/{tests,docs,tools}/*" = ["E402"] |
|
|
| [tool.ruff.format] |
| |
| quote-style = "double" |
|
|
| |
| indent-style = "space" |
|
|
| |
| skip-magic-trailing-comma = false |
|
|
| |
| line-ending = "auto" |
|
|
| |
| |
| |
| |
| |
| docstring-code-format = false |
|
|
| |
| |
| |
| |
| |
| docstring-code-line-length = "dynamic" |
|
|
| [tool.ruff.lint.isort] |
| known-first-party = ["alien_obfuscator"] |
|
|