-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (88 loc) · 2.52 KB
/
pyproject.toml
File metadata and controls
103 lines (88 loc) · 2.52 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aquamvs"
version = "1.5.2"
description = "Multi-view stereo reconstruction of underwater surfaces with refractive modeling"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Tucker Lancaster"}
]
keywords = ["multi-view-stereo", "underwater", "refraction", "computer-vision", "depth-estimation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Image Recognition",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"kornia>=0.7.0",
"open3d>=0.18.0",
"opencv-python>=4.6.0",
"numpy>=1.24.0",
"scipy>=1.10.0",
"pyyaml>=6.0",
"matplotlib>=3.7.0",
"pydantic>=2.12.0",
"tqdm>=4.66.0",
"tabulate>=0.9.0",
"aquacal>=0.1.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"ruff",
"pre-commit",
"sphinx",
"furo",
"sphinxcontrib-mermaid",
"myst-nb",
"nbformat",
"mypy",
"python-semantic-release",
"build",
]
[project.urls]
Repository = "https://github.com/tlancaster6/AquaMVS"
Documentation = "https://aquamvs.readthedocs.io/"
"Bug Tracker" = "https://github.com/tlancaster6/AquaMVS/issues"
Changelog = "https://github.com/tlancaster6/AquaMVS/blob/main/CHANGELOG.md"
[project.scripts]
aquamvs = "aquamvs.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*", "docs*"]
[tool.setuptools]
include-package-data = false
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
branch = "main"
commit_message = "chore(release): {version}"
build_command = "pip install build && python -m build"
tag_format = "v{version}"
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "style", "test"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
[tool.semantic_release.remote.token]
env = "GH_TOKEN"
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.ruff]
target-version = "py310"
line-length = 88
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
ignore = ["E501", "SIM105", "SIM108", "SIM117", "SIM118"]
[tool.ruff.lint.isort]
known-first-party = ["aquamvs"]