Skip to content

Commit 299aff2

Browse files
committed
Do not include .chm in packages
1 parent d1c232d commit 299aff2

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ recursive-include doc *.py *.rst *.png
22
include MANIFEST.in
33
include LICENSE
44
include README.md
5-
include CHANGELOG.md
6-
include doc/PythonQwt.chm.zip
5+
include CHANGELOG.md

scripts/upload.bat renamed to scripts/build_upload.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ REM (see LICENSE file for more details)
88
REM ======================================================
99
call %~dp0utils GetScriptPath SCRIPTPATH
1010
set UNATTENDED=1
11-
call %SCRIPTPATH%\build_doc.bat
11+
call %SCRIPTPATH%\clean_up.bat
12+
@REM call %SCRIPTPATH%\build_doc.bat
1213
call %SCRIPTPATH%\build_dist.bat
1314
@echo:
1415
@echo ==============================================================================

scripts/utils.bat

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,18 @@ for %%I in (.) do set %1=%%~nxI
2222
popd
2323
goto:eof
2424

25+
:GetModName
26+
pushd %~dp0..
27+
for /D %%I in (*) DO (
28+
if exist %%I\__init__.py (
29+
set %1=%%I
30+
goto :found_module
31+
)
32+
)
33+
:found_module
34+
popd
35+
goto:eof
36+
2537
:SetPythonPath
2638
set PYTHONPATH=%~dp0..
2739
goto:eof

0 commit comments

Comments
 (0)