Skip to content

Commit

Permalink
bdist xlsx
Browse files Browse the repository at this point in the history
  • Loading branch information
gdraheim committed Aug 2, 2024
1 parent 2e4b329 commit 74df70c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,12 @@ insxlsx:
$(MAKE) $(TAB)/setup.py
cd $(TAB) && $(PYTHON3) -m pip install --no-compile --user .
$(MAKE) showxlsx
showxlsx: ; $(PYTHON3) -m pip show -f $$(sed -e '/^name *=/!d' -e 's/.*= *//' setup.tabxlsx.cfg)
unsxlsx: ; $(PYTHON3) -m pip uninstall -vv --yes $$(sed -e '/^name *=/!d' -e 's/.*= *//' setup.tabxlsx.cfg)
showxlsx:
test -d tmp || mkdir -v tmp
cd tmp && $(PYTHON3) -m pip show -f $$(sed -e '/^name *=/!d' -e 's/.*= *//' ../setup.tabxlsx.cfg)
unsxlsx:
test -d tmp || mkdir -v tmp
cd tmp && $(PYTHON3) -m pip uninstall -vv --yes $$(sed -e '/^name *=/!d' -e 's/.*= *//' ../setup.tabxlsx.cfg)

README: README.md Makefile
cat README.md | sed -e "/\\/badge/d" -e /^---/q > README
Expand Down
3 changes: 2 additions & 1 deletion setup.tabxlsx.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ scripts =
tabxlsx = tabxlsx

[options.data_files]
data =
data/tabxlsx =
tabxlsx.txt
tabxlsx.md
tabxlsx.tests.py

[bdist_wheel]
universal = 1

0 comments on commit 74df70c

Please sign in to comment.