forked from torchcvnn/torchcvnn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 977 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 977 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
[project]
name = "torchcvnn"
dynamic = ["version"]
dependencies = [
"torch >= 2.0",
"numpy >= 2.0",
"requests >= 2.31.0",
"tqdm >= 4.66.1",
"pillow >= 11.1.0",
"scipy>=1.6.0",
"h5py>=3.12.1",
"huggingface-hub>=0.32.6"
]
requires-python = ">= 3.9.10"
authors = [
{name= "Jeremy Fix", email="jeremy.fix@centralesupelec.fr" },
{name= "Quentin Gabot", email="quentin.gabot@centralesupelec.fr" }
]
maintainers = [
{name= "Jeremy Fix", email="jeremy.fix@centralesupelec.fr" }
]
description = "torchcvnn provides complex valued layers to be used with pytorch"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["deep learning", "pytorch", "complex valued neural networks"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[tool.setuptools.dynamic]
version = {attr = "torchcvnn.__version__"}
[project.optional-dependencies]
docs = [
"sphinx>=8.1.3",
"furo>=2024.04.27",
"sphinx-copybutton>=0.5.2",
]