Files
JANUS/pyproject.toml
BattleTag 0ccd758600 baselines: update Kitsune Path A to JANUS route_comparison checkpoints
Replaces stale phase25_* checkpoint paths with the current janus_<ds>_seed<S>
layout under route_comparison/, adds CICIoT2023 to PCAP_GLOBS / WITHIN_DIRS,
and removes the per-dataset n_atk caps so within-dataset eval uses the same
sample budget as JANUS phase1.

Adds cython (3.2.4) — required by Kitsune's KitNET cluster compile path.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-08 23:59:40 +08:00

55 lines
1000 B
TOML

[project]
name = "JANUS"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"dpkt>=1.9.8",
"matplotlib>=3.10.8",
"numpy>=2.4.3",
"pyyaml>=6.0",
"scapy>=2.7.0",
"scikit-learn>=1.8.0",
"torch>=2.9.1",
"torchvision>=0.24.1",
"torchdiffeq>=0.2.5",
"mamba-ssm>=2.3.1",
"causal-conv1d>=1.6.1",
"pandas>=3.0.2",
"umap-learn>=0.5.12",
"pyarrow>=24.0.0",
"pzflow>=4.0.0",
"shap>=0.51.0",
"cython>=3.2.4",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.uv]
package = false
no-build-isolation-package = ["mamba-ssm", "causal-conv1d"]
[tool.uv.sources]
torch = [
{ index = "pytorch-cu128" },
]
torchvision = [
{ index = "pytorch-cu128" },
]
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true
[dependency-groups]
dev = [
"pytest>=9.0.3",
]