[Checkins] SVN: zc.recipe.filestorage/trunk/ - flesh out some of the package metadata

Fred L. Drake, Jr. fdrake at gmail.com
Tue Oct 30 22:46:52 EDT 2007


Log message for revision 81260:
  - flesh out some of the package metadata
  - use PyPI for the package URL instead of svn.zope.org
  - use consistent string quotes
  - conform more closely to the Zope 3 style guide
  

Changed:
  U   zc.recipe.filestorage/trunk/README.txt
  U   zc.recipe.filestorage/trunk/setup.py

-=-
Modified: zc.recipe.filestorage/trunk/README.txt
===================================================================
--- zc.recipe.filestorage/trunk/README.txt	2007-10-31 02:26:43 UTC (rev 81259)
+++ zc.recipe.filestorage/trunk/README.txt	2007-10-31 02:46:52 UTC (rev 81260)
@@ -87,6 +87,15 @@
 removed in order to start the database from scratch.
 
 
+Release history
+---------------
+
+1.0.0 (unreleased)
+~~~~~~~~~~~~~~~~~~
+
+Initial release.
+
+
 To do
 -----
 

Modified: zc.recipe.filestorage/trunk/setup.py
===================================================================
--- zc.recipe.filestorage/trunk/setup.py	2007-10-31 02:26:43 UTC (rev 81259)
+++ zc.recipe.filestorage/trunk/setup.py	2007-10-31 02:46:52 UTC (rev 81260)
@@ -2,23 +2,29 @@
 
 name = "zc.recipe.filestorage"
 setup(
-    name = name,
-    version = "1.0a6",
-    author = "Jim Fulton",
-    author_email = "jim at zope.com",
-    description = "ZC Buildout recipe for defining a file-storage",
-    long_description = open('README.txt').read(),
-    license = "ZPL 2.1",
-    keywords = "zope3",
-    url='http://svn.zope.org/'+name,
-
-    packages = find_packages(),
-    include_package_data = True,
-    data_files = [('.', ['README.txt'])],
-    namespace_packages = ['zc', 'zc.recipe'],
-    install_requires = ['zc.buildout', 'zope.testing', 'setuptools'],
-    dependency_links = ['http://download.zope.org/distribution/'],
-    entry_points = {'zc.buildout':
-                    ['default = %s:Recipe' % name]},
-    zip_safe = True,
+    name=name,
+    version="1.0a6",
+    author="Jim Fulton",
+    author_email="jim at zope.com",
+    description="ZC Buildout recipe for defining a file-storage",
+    long_description=open("README.txt").read(),
+    license="ZPL 2.1",
+    keywords=["zodb", "zc.buildout"],
+    url="http://pypi.python.org/pypi/%s/" % name,
+    classifiers=[
+        #"Development Status :: 5 - Production/Stable",
+        "Framework :: ZODB",
+        "Framework :: Buildout",
+        "Intended Audience :: Developers",
+        "License :: OSI Approved :: Zope Public License",
+        "Topic :: Software Development :: Build Tools",
+        "Topic :: Software Development :: Libraries :: Python Modules",
+        ],
+    packages=find_packages(),
+    include_package_data=True,
+    data_files=[(".", ["README.txt"])],
+    namespace_packages=["zc", "zc.recipe"],
+    install_requires=["zc.buildout", "zope.testing", "setuptools"],
+    entry_points={"zc.buildout": ["default=%s:Recipe" % name]},
+    zip_safe=True,
     )



More information about the Checkins mailing list