File: no_package_data.patch

package info (click to toggle)
python-launchpadlib 1.10.2%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 544 kB
  • ctags: 637
  • sloc: python: 2,099; makefile: 27; sh: 9
file content (16 lines) | stat: -rw-r--r-- 505 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Do not install documentation files in Python module directory
Author: Luca Falavigna <dktrkranz@debian.org>
Bug-Debian: http://bugs.debian.org/580324
Forwarded: not-needed

--- a/setup.py
+++ b/setup.py
@@ -43,7 +43,7 @@
     version=__version__,
     packages=find_packages('src'),
     package_dir={'':'src'},
-    include_package_data=True,
+    include_package_data=False,
     zip_safe=False,
     author='The Launchpad developers',
     author_email='launchpadlib@lists.launchpad.net',