-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from lcfd/report-works
Report works
- Loading branch information
Showing
18 changed files
with
661 additions
and
342 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -30,6 +30,35 @@ black = ">=23.9.1" | |
ruff = "^0.0.292" | ||
|
||
|
||
[tool.pdm] | ||
[tool.pdm.dev-dependencies] | ||
dev = ["black>=23.9.1", "ruff<1.0.0,>=0.0.292", "pytest>=7.4.4"] | ||
|
||
[tool.pdm.build] | ||
includes = [] | ||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[project] | ||
authors = [ | ||
{ name = "Luca Fedrizzi", email = "[email protected]" }, | ||
] | ||
license = { text = "AGPL-3.0" } | ||
requires-python = ">=3.11,<4.0" | ||
dependencies = ["typer[all]>=0.9.0"] | ||
name = "trakcli" | ||
version = "0.0.4" | ||
description = "Keep a record of the time you dedicate to your projects." | ||
readme = "README.md" | ||
keywords = ["cli", "timetraker", "time", "traker", "tool"] | ||
|
||
[project.urls] | ||
"Trak on X" = "https://twitter.com/usetrakcom" | ||
"Luca Fedrizzi's website" = "https://lucafedrizzi.com/" | ||
"Luca Fedrizzi on X" = "https://twitter.com/lc_fd" | ||
homepage = "https://usetrak.com/" | ||
repository = "https://github.com/lcfd/trak" | ||
|
||
[project.scripts] | ||
trak = "trakcli.main:app" |
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,9 @@ | ||
import typer | ||
|
||
from .commands.report_project import report_project | ||
|
||
app = typer.Typer() | ||
|
||
|
||
app.command("project")(report_project) | ||
app.command("projects")(report_project) |
Oops, something went wrong.