forked from torchcvnn/torchcvnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 867 Bytes
/
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
[project]
name = "torchcvnn"
dynamic = ["version"]
dependencies = [
"torch >= 2.0",
"numpy",
"requests >= 2.31.0",
"tqdm >= 4.66.1",
"pillow",
"scipy>=1.14.1",
"h5py>=3.12.1"
]
requires-python = ">= 3.8"
authors = [
{name= "Jeremy Fix", email="[email protected]" }
]
maintainers = [
{name= "Jeremy Fix", email="[email protected]" }
]
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",
]