Skip to content

Commit c2d323e

Browse files
committed
Add script to package cli into tar
1 parent e0873ed commit c2d323e

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
result
2+
dist.tar.gz

cli/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies = [
5151
"questionary>=2.0.1",
5252
]
5353
name = "trakcli"
54-
version = "0.0.4"
54+
version = "0.0.5"
5555
description = "Keep a record of the time you dedicate to your projects."
5656
readme = "README.md"
5757
keywords = ["cli", "timetraker", "time", "traker", "tool"]

package.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rm dist.tar.gz
2+
tar --exclude=".venv" --exclude="dist" --exclude=".mypy_cache" --exclude=".pytest_cache" --exclude="**/__pycache__" -czvf dist.tar.gz cli

0 commit comments

Comments
 (0)