-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 872 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 872 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
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deformable-conv-pytorch"
version = "0.1.0"
description = "Pure-Pytorch implementation of Deformable Convolution"
readme = "README.md"
authors = [{ name = "giangbang", email = "banggiangle2015@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["deformable", "conv", "pytorch"]
dependencies = [
"torch",
]
requires-python = ">=3.7"
[tool.setuptools]
packages = ["deform_conv_torch"]
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest", "torchvision"]
[project.urls]
Homepage = "https://github.com/giangbang/Pure-Pytorch-implementation-Deformable-Convolution"