-
Notifications
You must be signed in to change notification settings - Fork 9
/
MANIFEST.in
53 lines (40 loc) · 1.2 KB
/
MANIFEST.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# MANIFEST template file to make a distribution tarball
# package stuff
include ANNOUNCEMENT-5.2.1 COPYING*
include MANIFEST.in GNUmakefile pyqwt-5.2.patch
# configure
include configure/configure.py
include configure/PyQwt.nsi.in
include configure/configqt.bat
# fixed Qwt-5.2.0 headers
graft include-5.2.0
recursive-exclude include-5.2.0 .cvsignore *~
# PyQwt python code for PyQt/Qt3
graft qt3lib
recursive-exclude qt3lib .cvsignore .python_history *~
# PyQwt python code for PyQt4/Qt4
graft qt4lib
recursive-exclude qt4lib .cvsignore .python_history *~
# Qt3 examples
graft qt3examples
recursive-exclude qt3examples *.html *.png *.pyc *.svg .cvsignore .python_history *~ typescript
# Qt4 examples
graft qt4examples
recursive-exclude qt4examples *.html *.png *.pyc *.svg .cvsignore .python_history *~ typescript
# support code
graft support
recursive-exclude suppport .cvsignore .python_history *~
# qwt-svn
graft qwt-5.2
recursive-exclude qwt-5.2 *~
# sip files
graft sip
recursive-exclude sip .cvsignore .python_history *~
# tests
include tests/test_*.py
# Documentation
graft sphinx
recursive-exclude sphinx static *.doctree *.pickle .cvsignore .python_history *~
# Local Variables: ***
# mode: sh ***
# End: ***