Skip to content

Commit

Permalink
[ADD] build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
mathix420 committed Mar 11, 2023
1 parent ac48e3c commit afa4df4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.PHONY: all clean build deploy

all: clean build deploy

clean:
rm -rf dist/

build:
pip install -U build
python3 -m build

deploy:
pip install -U twine
python3 -m twine upload dist/*
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,8 @@ bindsym $mod+Insert exec rofi-notion run $YOUR_DB_NAME

## Config

Default config destination is `$XDG_CONFIG_HOME/rofi-notion` or `$HOME/.config/rofi-notion` if `$XDG_CONFIG_HOME` is not set.
Default config destination is `$XDG_CONFIG_HOME/rofi-notion` or `$HOME/.config/rofi-notion` if `$XDG_CONFIG_HOME` is not set.

## Deployment

Bump version in `setup.py` then run `make`.

0 comments on commit afa4df4

Please sign in to comment.