File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,4 @@ recursive-include doc *.py *.rst *.png
22include MANIFEST.in
33include LICENSE
44include README.md
5- include CHANGELOG.md
6- include doc/PythonQwt.chm.zip
5+ include CHANGELOG.md
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ REM (see LICENSE file for more details)
88REM ======================================================
99call %~dp0 utils GetScriptPath SCRIPTPATH
1010set UNATTENDED = 1
11- call %SCRIPTPATH% \build_doc.bat
11+ call %SCRIPTPATH% \clean_up.bat
12+ @ REM call %SCRIPTPATH%\build_doc.bat
1213call %SCRIPTPATH% \build_dist.bat
1314@ echo :
1415@ echo ==============================================================================
Original file line number Diff line number Diff line change @@ -22,6 +22,18 @@ for %%I in (.) do set %1=%%~nxI
2222popd
2323goto :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
2638set PYTHONPATH = %~dp0 ..
2739goto :eof
You can’t perform that action at this time.
0 commit comments