-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
executable file
·54 lines (51 loc) · 1.12 KB
/
pyproject.toml
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
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "torchsig"
description = "Signal Processing Machine Learning Toolkit"
authors = [
{name = "TorchSig Team"},
]
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["signal processing", "machine learning"]
dependencies = [
"torch>=2.3.1",
"torchvision",
"tqdm",
"opencv-python==4.8.0.74",
"numpy==1.26.4",
"scipy",
"h5py",
"matplotlib",
"numba",
"ipdb",
"PyWavelets",
"pandas",
"lmdb",
"scikit-learn",
"gdown",
"icecream",
"torchaudio",
"timm",
"pytorch_lightning",
"sympy",
"torchmetrics",
"click",
"ultralytics",
"optuna",
"jupyter_bbox_widget"
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "torchsig.__version__"}
# [project.optional-dependencies]
# pdf = ["ReportLab>=1.2", "RXP"]
# rest = ["docutils>=0.3", "pack ==1.1, ==1.3"]