summaryrefslogtreecommitdiffstats
path: root/python/pkginfo/setup.patch
blob: 1c0a281ae61733199c461afc9ed8a05765e4d0a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- pkginfo-1.4.0/setup.orig.py	2016-11-05 05:43:07.149052800 +0200
+++ pkginfo-1.4.0/setup.py	2016-11-05 05:43:34.139715370 +0200
@@ -16,14 +16,14 @@
 
 here = os.path.abspath(os.path.dirname(__file__))
 README = open(os.path.join(here, 'README.txt')).read()
-CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
+# CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
 
 setup(
     name='pkginfo',
     version='1.4.0',
     description='Query metadatdata from sdists / bdists / installed packages.',
     platforms=['Unix', 'Windows'],
-    long_description='\n\n'.join([README, CHANGES]),
+    long_description='\n\n'.join([README]),
     keywords='distribution sdist installed metadata',
     url='https://code.launchpad.net/~tseaver/pkginfo/trunk',
     author='Tres Seaver, Agendaless Consulting',