Skip to content

Commit

Permalink
Fixed formatting and scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
kkalinowski-reef committed Dec 14, 2023
1 parent e03d1f2 commit 85876dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ license = { file = ["requirements-license.txt"] }
Homepage = "https://github.com/Backblaze/B2_Command_Line_Tool"

[project.scripts]
b2 = "b2.b2v3:main"
b2v3 = "b2.b2v3:main"
_b2v4 = "b2._b2v4:main"
b2 = "b2.b2v3.__main__:main"
b2v3 = "b2.b2v3.__main__:main"
_b2v4 = "b2._b2v4.__main__:main"

[tool.ruff]
target-version = "py37" # to be replaced by project:requires-python when we will have that section in here
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ def read_requirements(extra=None):
entry_points={
'console_scripts':
[
'b2=b2.b2v3:main',
'b2v3=b2.b2v3:main',
'_b2v4=b2._b2v4:main',
'b2=b2.b2v3.__main__:main',
'b2v3=b2.b2v3.__main__:main',
'_b2v4=b2._b2v4.__main__:main',
],
},
)

0 comments on commit 85876dc

Please sign in to comment.