Spaces:
Running
Running
| [build-system] | |
| requires = ["setuptools>=61"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "mithridatium" | |
| version = "0.1.1" | |
| requires-python = ">=3.10" | |
| description = "Framework for verifying integrity of pretrained AI models" | |
| readme = "README.md" | |
| dependencies = [ | |
| "typer>=0.12", | |
| "torch", | |
| "torchvision", | |
| "jsonschema", | |
| "scipy" | |
| ] | |
| [tool.setuptools.packages.find] | |
| where = ["."] | |
| include = ["mithridatium*"] | |
| [project.scripts] | |
| mithridatium = "mithridatium.cli:app" | |
| [tool.pytest.ini_options] | |
| markers = [ | |
| "slow: end-to-end tests that may take longer to run", | |
| ] | |