Skip to content

Commit

Permalink
Do not include .chm in packages
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreRaybaut committed Oct 8, 2023
1 parent d1c232d commit 299aff2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ recursive-include doc *.py *.rst *.png
include MANIFEST.in
include LICENSE
include README.md
include CHANGELOG.md
include doc/PythonQwt.chm.zip
include CHANGELOG.md
3 changes: 2 additions & 1 deletion scripts/upload.bat → scripts/build_upload.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ REM (see LICENSE file for more details)
REM ======================================================
call %~dp0utils GetScriptPath SCRIPTPATH
set UNATTENDED=1
call %SCRIPTPATH%\build_doc.bat
call %SCRIPTPATH%\clean_up.bat
@REM call %SCRIPTPATH%\build_doc.bat
call %SCRIPTPATH%\build_dist.bat
@echo:
@echo ==============================================================================
Expand Down
12 changes: 12 additions & 0 deletions scripts/utils.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ for %%I in (.) do set %1=%%~nxI
popd
goto:eof

:GetModName
pushd %~dp0..
for /D %%I in (*) DO (
if exist %%I\__init__.py (
set %1=%%I
goto :found_module
)
)
:found_module
popd
goto:eof

:SetPythonPath
set PYTHONPATH=%~dp0..
goto:eof
Expand Down

0 comments on commit 299aff2

Please sign in to comment.