[Checkins] SVN: zopyx.pypitrashfinder/trunk/ updated

Andreas Jung andreas at andreas-jung.com
Tue Dec 29 10:42:25 EST 2009


Log message for revision 107271:
  updated
  

Changed:
  U   zopyx.pypitrashfinder/trunk/README.txt
  U   zopyx.pypitrashfinder/trunk/docs/HISTORY.txt
  U   zopyx.pypitrashfinder/trunk/setup.py

-=-
Modified: zopyx.pypitrashfinder/trunk/README.txt
===================================================================
--- zopyx.pypitrashfinder/trunk/README.txt	2009-12-29 15:25:26 UTC (rev 107270)
+++ zopyx.pypitrashfinder/trunk/README.txt	2009-12-29 15:42:25 UTC (rev 107271)
@@ -1,4 +1,33 @@
 Introduction
 ============
 
+```zopyx.pypitrashfinder`` performs some sanity checks on packages
+registered on PyPI (metadata and release files). A proper package
+should contain at least name and email of the author or maintainer
+and a reasonable description. 
 
+Installation
+------------
+
+   easy_install zopyx.pypitrashfinder
+
+
+Usage
+-----
+   
+   pypi-trashfinder <package-prefix)
+
+e.g.
+
+   pypi-trashfinder collective.
+    
+Author
+------
+
+Andreas Jung
+info at zopyx.com
+
+License
+--------
+
+Published under the Zope Public License (ZPL)

Modified: zopyx.pypitrashfinder/trunk/docs/HISTORY.txt
===================================================================
--- zopyx.pypitrashfinder/trunk/docs/HISTORY.txt	2009-12-29 15:25:26 UTC (rev 107270)
+++ zopyx.pypitrashfinder/trunk/docs/HISTORY.txt	2009-12-29 15:42:25 UTC (rev 107271)
@@ -1,7 +1,7 @@
 Changelog
 =========
 
-0.1dev (unreleased)
+0.1.0 (2009/12/29)
 -------------------
 
 - Initial release

Modified: zopyx.pypitrashfinder/trunk/setup.py
===================================================================
--- zopyx.pypitrashfinder/trunk/setup.py	2009-12-29 15:25:26 UTC (rev 107270)
+++ zopyx.pypitrashfinder/trunk/setup.py	2009-12-29 15:42:25 UTC (rev 107271)
@@ -1,7 +1,7 @@
 from setuptools import setup, find_packages
 import os
 
-version = '0.1'
+version = '0.1.0'
 
 setup(name='zopyx.findtrashonpypi',
       version=version,
@@ -12,7 +12,7 @@
       classifiers=[
         "Programming Language :: Python",
         ],
-      keywords='',
+      keywords='Trash Crap PyPI',
       author='Andreas Jung',
       author_email='info at zopyx.com',
       url='',
@@ -25,7 +25,7 @@
           'setuptools',
           # -*- Extra requirements: -*-
       ],
-      entry_points="""
-      # -*- Entry points: -*-
-      """,
+      entry_points=dict(console_scripts=(
+        'pypi-trashfinder=zopyx.pypitrashfinder.cli:main',
+        )),
       )



More information about the checkins mailing list