-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.75 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
############################################################################
# Bitbucket CLI (bb): Work seamlessly with Bitbucket from the command line
#
# Copyright (C) 2022 P S, Adithya (psadi) ([email protected])
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
############################################################################
[project]
name = "bb"
version = "0.6.4"
description = "Work seamlessly with BitBucket from the command line."
authors = [{ name = "psadi", email = "[email protected]" }]
dependencies = ["typer>=0.7.0", "httpx>=0.24.0"]
requires-python = ">=3.9"
readme = "README.md"
license = { text = "AGPL" }
[project.scripts]
bb = "bb:_bb"
[tool.uv]
package = true
upgrade = true
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ruff.lint]
extend-select = ["I"]
ignore = ["E501"]
[tool.bandit]
skips = ["B404", "B603", "B607"]
[dependency-groups]
dev = [
"pytest>=7.2.1",
"pytest-cov>=4.0.0",
"tox-pdm>=0.6.1",
"ruff>=0.0.257",
"bandit>=1.7.5",
"pyyaml>=6.0.1",
"zipp>=3.19.1",
"pre-commit>=3.5.0",
"pip-audit>=2.7.3",
]