-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
88 lines (81 loc) · 2.05 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
[tool.ruff]
line-length = 170
[tool.poetry]
name = "mbari-aidata"
version = "1.41.7"
description = "Command line tool to do extract, transform, load and download operations on AI data for a number of projects at MBARI that require detection, clustering or classification workflows."
authors = [
"Danelle Cline <[email protected]>"
]
license = "Apache"
readme = "README.md"
packages = [
{ include = "mbari_aidata" }
]
exclude = ["tests"]
[tool.poetry.scripts]
aidata = "mbari_aidata.__main__:cli"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
redis = "5.0.7"
tator = "1.2.3"
ephem = "4.1.6"
moviepy = "2.1.1"
opencv-contrib-python = "4.11.0.86"
pytz = "2024.2"
piexif = "1.1.3"
click = "8.1.7"
tqdm = "4.67.1"
transformers = "4.48.0"
torchvision = "0.18.1"
requests = "2.32.3"
pascal-voc-writer = ">=0.1.4"
albumentations = "1.4.15"
albucore = "0.0.16"
pandas = "2.2.2"
[tool.semantic_release]
branch = "main"
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
upload_to_PyPI = false
upload_to_release = true
tag_format = "v{version}"
commit_version_number = true
allow_zero_version = true
commit_parser = "angular"
logging_use_named_masks = true
major_on_zero = true
assets = []
version_variables = ["mbari_aidata/__init__.py:__version__"]
version_toml = ["pyproject.toml:tool.poetry.version"]
build_command = "pip install poetry && poetry build"
[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.token]
env = "GITHUB_TOKEN"
[tool.semantic_release.changelog]
changelog_file = "CHANGELOG.md"
exclude_commit_patterns = [
'''chore(?:\([^)]*?\))?: .+''',
'''ci(?:\([^)]*?\))?: .+''',
'''refactor(?:\([^)]*?\))?: .+''',
'''style(?:\([^)]*?\))?: .+''',
'''test(?:\([^)]*?\))?: .+''',
'''build\((?!deps\): .+)''',
'''Merged? .*''',
'''Initial Commit.*''',
# Old semantic-release version commits
'''^\d+\.\d+\.\d+''',
]