-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.2.0 - split out functionality of 'sup' command into 'sup' and 'did…
…', UI cleanup, 'nvm' and 'info' not implemented yet.
- Loading branch information
1 parent
6ab66f0
commit a8dbe96
Showing
10 changed files
with
32 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,14 @@ | ||
[project] | ||
name = "fob" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
description = "Focus Blocks: Simple and elegant daily time management tool." | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "tensorturtle", email = "[email protected]" } | ||
] | ||
authors = [{ name = "tensorturtle", email = "[email protected]" }] | ||
requires-python = ">=3.12" | ||
dependencies = [ | ||
"rich>=13.9.4", | ||
"tinydb>=4.8.2", | ||
] | ||
dependencies = ["rich>=13.9.4", "tinydb>=4.8.2"] | ||
|
||
[project.scripts] | ||
fob = "fob:main" | ||
|
||
[tool.uv] | ||
dev-dependencies = [ | ||
"nuitka>=2.4.11", | ||
] | ||
dev-dependencies = ["nuitka>=2.4.11"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
from argparse import Namespace | ||
|
||
from fob.db.wrapper import TinyDBWrapper | ||
|
||
|
||
def info(args: Namespace, db: TinyDBWrapper): | ||
''' | ||
'info' command displays basic metadata about this program. | ||
+ Version | ||
+ Author | ||
+ License | ||
''' | ||
raise NotImplementedError("This command has not been implemented yet.") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.