Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ browsr refactor #39

Merged
merged 5 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = {
[
"@semantic-release/git",
{
assets: ["pyproject.toml", "*/_version.py"],
assets: ["pyproject.toml", "*/__about__.py"],
message:
"🔖 browsr ${nextRelease.version}\n\n${nextRelease.notes}\n[skip ci]",
},
Expand Down
File renamed without changes.
5 changes: 0 additions & 5 deletions browsr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
"""
browsr
"""

from browsr.browsr import Browsr
from browsr.universal_directory_tree import BrowsrDirectoryTree

__all__ = ["Browsr", "BrowsrDirectoryTree"]
2 changes: 1 addition & 1 deletion browsr/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
browsr __main__ hook
"""

from browsr._cli import browsr
from browsr.cli import browsr

if __name__ == "__main__":
browsr()
287 changes: 0 additions & 287 deletions browsr/_base.py

This file was deleted.

Loading