File: distutils_exclude_files

package info (click to toggle)
drpython 1%3A3.11.1-2
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 3,400 kB
  • ctags: 2,366
  • sloc: python: 16,315; makefile: 5; sh: 1
file content (21 lines) | stat: -rw-r--r-- 706 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
DEBIAN-SPECIFIC
Do not install unwanted files with distutils.

Index: drpython-3.11.0/setup.py
===================================================================
--- drpython-3.11.0.orig/setup.py	2009-04-07 21:25:33.000000000 +0200
+++ drpython-3.11.0/setup.py	2009-04-07 21:30:47.000000000 +0200
@@ -73,7 +73,6 @@
     'bitmaps/*.ico', 'bitmaps/*.png',
     'bitmaps/16/*.png', 'bitmaps/24/*.png',
     # adding runner scripts, TODO: drpython startup should be probably redone
-    'drpython.pyw', 'drpython.lin'
 ]
 
 from distutils.core import setup
@@ -92,5 +91,4 @@
     packages=[ MY_NAME ],
     package_dir={ MY_NAME : '.' },
     package_data={ MY_NAME : DATA },
-    scripts=['postinst.py'],
 )