-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "WiInSim"
version = "1.0.0"
description = "Dataloader utilities for the Wireless Indoor Simulations dataset."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch>=2.0.1",
"torchvision>=0.13.1",
"h5py>=3.8.0",
"numpy>=1.24.3,<1.25", # Anything up to 2.0 should probably be fine as well.
"hydra-core>=1.3.2",
"omegaconf>=2.3.0",
"pycollada>=0.8",
"matplotlib",
"pytest-regressions",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
notebook = [
"k3d",
"jupyterlab",
]
[project.urls]
"Homepage" = "https://github.com/Qualcomm-AI-research/WiInSim"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.black]
line-length = 100