[Checkins] SVN: z3c.componentdebug/trunk/setup.py Add a setup.py file to change the license to conform with the Zope

Ross Patterson me at rpatterson.net
Wed Mar 17 19:23:43 EDT 2010


Log message for revision 110046:
  Add a setup.py file to change the license to conform with the Zope
  Foundation's policy concerning the svn.zope.org repository.

Changed:
  A   z3c.componentdebug/trunk/setup.py

-=-
Added: z3c.componentdebug/trunk/setup.py
===================================================================
--- z3c.componentdebug/trunk/setup.py	                        (rev 0)
+++ z3c.componentdebug/trunk/setup.py	2010-03-17 23:23:43 UTC (rev 110046)
@@ -0,0 +1,26 @@
+from setuptools import setup, find_packages
+import sys, os
+
+version = '0.1'
+
+setup(name='z3c.componentdebug',
+      version=version,
+      description="Provides a set of tools for inspecting ZCA component registries.",
+      long_description="""\
+""",
+      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
+      keywords='Python Zope',
+      author='Ross Patterson',
+      author_email='me at rpatterson.net',
+      url='http://rpatterson.net/software/z3c.componentdebug',
+      license='ZPL',
+      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
+      include_package_data=True,
+      zip_safe=False,
+      install_requires=[
+          # -*- Extra requirements: -*-
+      ],
+      entry_points="""
+      # -*- Entry points: -*-
+      """,
+      )



More information about the checkins mailing list