[Checkins] SVN: lovely.buildouthttp/trunk/ moving download to pypi

Jodok Batlogg jodok.batlogg at lovelysystems.com
Mon Jul 23 11:51:37 EDT 2007


Log message for revision 78292:
  moving download to pypi

Changed:
  U   lovely.buildouthttp/trunk/CHANGES.txt
  U   lovely.buildouthttp/trunk/setup.py

-=-
Modified: lovely.buildouthttp/trunk/CHANGES.txt
===================================================================
--- lovely.buildouthttp/trunk/CHANGES.txt	2007-07-23 10:26:03 UTC (rev 78291)
+++ lovely.buildouthttp/trunk/CHANGES.txt	2007-07-23 15:51:37 UTC (rev 78292)
@@ -2,6 +2,11 @@
 Changes for lovely.buildouthttp
 ===============================
 
+2007/07/23 0.1.0a3:
+===================
+
+- added information to setup.py, moved to cheeseshop
+
 2007/06/21 0.1.0a2:
 ===================
 

Modified: lovely.buildouthttp/trunk/setup.py
===================================================================
--- lovely.buildouthttp/trunk/setup.py	2007-07-23 10:26:03 UTC (rev 78291)
+++ lovely.buildouthttp/trunk/setup.py	2007-07-23 15:51:37 UTC (rev 78292)
@@ -1,13 +1,26 @@
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+long_description=(
+        read('README.txt')
+        + '\n' +
+        read('CHANGES.txt')
+        + '\n' +
+        'Download\n'
+        '**********************\n'
+        )
+
 name='lovely.buildouthttp'
 setup(
-    name=name,
-    version = "0.1.0a2",
-    author = "Lovely Systems",
+    name = name,
+    version = "0.1.0a3",
+    author = "Lovely Systems GmbH",
     author_email = "office at lovelysystems.com",
     description = "Specialized zc.buildout plugin to add http basic" \
                   "authentication support with a pwd file.",
+    long_description = long_description,
     license = "ZPL 2.1",
     keywords = "buildout http authentication",
     packages = find_packages('src'),
@@ -15,8 +28,15 @@
     package_dir = {'':'src'},
     namespace_packages = ['lovely'],
     install_requires = ['setuptools'],
-    zip_safe=False,
     entry_points = {'zc.buildout.extension':
                     ['default = %s.buildouthttp:install' % name]
                     },
+    zip_safe = False,
+    classifiers = [
+       'Development Status :: 4 - Beta',
+       'Intended Audience :: Developers',
+       'License :: OSI Approved :: Zope Public License',
+       'Topic :: Software Development :: Build Tools',
+       'Topic :: Software Development :: Libraries :: Python Modules',
+       ],
     )



More information about the Checkins mailing list