-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (48 loc) · 1.23 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
55
56
57
58
59
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "torch_ransac3d"
version = "2.0.0"
authors = [
{name = "Harry Dobbs", email = "[email protected]"},
]
description = "A high-performance implementation of 3D RANSAC (Random Sample Consensus) algorithm using PyTorch and CUDA."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
dependencies = [
'numpy',
'torch'
]
[tool.setuptools_scm]
write_to = "torch_ransac3d/_version.py"
[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters
[project.scripts]
[project.urls]
Homepage = "https://github.com/harrydobbs/torch_ransac3d"
Documentation = "https://harrydobbs.github.io/torch_ransac3d/"
Issues = "https://github.com/harrydobbs/torch_ransac3d/issues"
[project.optional-dependencies]
dev = [
"sphinx",
"sphinx-autodoc-typehints",
"sphinx-rtd-theme",
"pytest",
"pytest-cov",
"pytest-xdist",
"pytest-timeout"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --color=yes"
[tool.pycln]
all = true
expand_stars = true
verbose = true
exclude = """
__init__.py
|tests/.*
"""