forked from ThijsKuipers1995/gconv
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 828 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (28 loc) · 828 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
[tool.poetry]
name = "gconv-tpk"
version = "0.0.4"
description = "Pytorch extension for continuous regular group convolutions"
authors = ["Thijs Kuipers <kuipersthijs@gmail.com>"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [ {include = "gconv"} ]
[tool.poetry.urls]
"Homepage" = "https://github.com/ThijsKuipers1995/gconv"
"Bug Tracker" = "https://github.com/ThijsKuipers1995/gconv/issues"
[tool.poetry.dependencies]
python = "^3.10"
torch = "^2.3.0"
tqdm = "^4.66.4"
[tool.poetry.group.dev.dependencies]
matplotlib = "^3.8.4"
black = "^24.4.2"
pytest = "^8.2.1"
flake8 = "^7.0.0"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"