| [build-system] | |
| requires = ["setuptools>=68", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "wiser-wireless" | |
| version = "0.1.0" | |
| description = "WiSER: a wireless scene encoder for geometry-grounded radiomap and CIR prediction." | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| license = {text = "MIT"} | |
| authors = [ | |
| {name = "WiSER Authors"} | |
| ] | |
| dependencies = [ | |
| "numpy", | |
| "scipy", | |
| "h5py", | |
| "pyyaml", | |
| "tqdm", | |
| "einops", | |
| "torch", | |
| ] | |
| [tool.setuptools] | |
| packages = {find = {include = ["wiser*"]}} | |
| [tool.pytest.ini_options] | |
| testpaths = ["tests"] | |
| pythonpath = ["."] | |