[Checkins] SVN: zope.pytest/trunk/setup.py Brush up setup.py to be more compatible with ZF guidelines.

Uli Fouquet uli at gnufix.de
Tue Jan 4 11:22:29 EST 2011


Log message for revision 119364:
  Brush up setup.py to be more compatible with ZF guidelines.
  

Changed:
  U   zope.pytest/trunk/setup.py

-=-
Modified: zope.pytest/trunk/setup.py
===================================================================
--- zope.pytest/trunk/setup.py	2011-01-04 16:15:01 UTC (rev 119363)
+++ zope.pytest/trunk/setup.py	2011-01-04 16:22:28 UTC (rev 119364)
@@ -1,7 +1,7 @@
 from setuptools import setup, find_packages
 import sys,os
 
-version = '1.0'
+version = '0.1dev'
 
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
@@ -19,16 +19,21 @@
       version=version,
       description="zope pytest integration",
       long_description=long_description,
-      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
+      # Get more strings from
+      # http://www.python.org/pypi?%3Aaction=list_classifiers
       classifiers=[
+        "Topic :: Software Development :: Libraries :: Python Modules",
+        "Environment :: Web Environment",
+        "Intended Audience :: Developers",
+        "License :: OSI Approved :: Zope Public License",
         "Programming Language :: Python",
-        "Topic :: Software Development :: Libraries :: Python Modules",
+        "Framework :: Zope3",
         ],
       keywords='',
-      author='',
-      author_email='',
-      url='',
-      license='BSD',
+      author='Martijn Faassen and contributors',
+      author_email='zope-dev at zope dot org',
+      url='http://pypi.python.org/pypi/zope.pytest',
+      license='ZPL',
       packages=find_packages('src',exclude=['ez_setup']),
       namespace_packages=['zope'],
       package_dir={'': 'src'},



More information about the checkins mailing list