-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
96 lines (83 loc) · 2.36 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
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
[tool.poetry]
name = "vars-gridview"
version = "0.14.0"
description = "VARS GridView is a tool for reviewing and correcting VARS localizations in bulk."
authors = [
"Kevin Barnard <[email protected]>",
"Paul Roberts <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/mbari-org/vars-gridview"
keywords = ["VARS", "localization", "annotation"]
license = "MIT"
include = ["LICENSE"]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
pyqt6 = "^6.4.0"
pymssql = "^2.2.4"
requests = "^2.27.1"
pyqtgraph = "^0.13.0"
opencv-python = "^4.5.5.62"
qdarkstyle = "^3.0.3"
beholder-client = "^0.1.0"
sharktopoda-client = "^0.4.5"
platformdirs = "^4.0.0"
dreamsim = "^0.1.3"
[tool.poetry.scripts]
vars-gridview = "vars_gridview.scripts.run:main"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
pre-commit = "^3.5.0"
pyinstaller = "^6.2.0"
python-semantic-release = "^8.3.0"
[tool.semantic_release]
assets = []
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
commit_parser = "angular"
logging_use_named_masks = false
major_on_zero = true
tag_format = "v{version}"
version_toml = [
"pyproject.toml:tool.poetry.version",
]
[tool.semantic_release.branches.main]
match = "(main|master)"
prerelease_token = "rc"
prerelease = false
[tool.semantic_release.changelog]
template_dir = "templates"
changelog_file = "CHANGELOG.md"
exclude_commit_patterns = []
[tool.semantic_release.changelog.environment]
block_start_string = "{%"
block_end_string = "%}"
variable_start_string = "{{"
variable_end_string = "}}"
comment_start_string = "{#"
comment_end_string = "#}"
trim_blocks = false
lstrip_blocks = false
newline_sequence = "\n"
keep_trailing_newline = false
extensions = []
autoescape = true
[tool.semantic_release.commit_author]
env = "GIT_COMMIT_AUTHOR"
default = "semantic-release <semantic-release>"
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
[tool.semantic_release.remote]
name = "origin"
type = "github"
ignore_token_for_push = false
[tool.semantic_release.remote.token]
env = "GH_TOKEN"
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"