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
2
2
include MANIFEST.in
3
3
include LICENSE
4
4
include 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)
8
8
REM ======================================================
9
9
call %~dp0 utils GetScriptPath SCRIPTPATH
10
10
set UNATTENDED = 1
11
- call %SCRIPTPATH% \build_doc.bat
11
+ call %SCRIPTPATH% \clean_up.bat
12
+ @ REM call %SCRIPTPATH%\build_doc.bat
12
13
call %SCRIPTPATH% \build_dist.bat
13
14
@ echo :
14
15
@ echo ==============================================================================
Original file line number Diff line number Diff line change @@ -22,6 +22,18 @@ for %%I in (.) do set %1=%%~nxI
22
22
popd
23
23
goto :eof
24
24
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
+
25
37
:SetPythonPath
26
38
set PYTHONPATH = %~dp0 ..
27
39
goto :eof
You can’t perform that action at this time.
0 commit comments