From 23e4397e51e445bfebb69c98242fa4400c6f1a0b Mon Sep 17 00:00:00 2001 From: Hanno Schlichting Date: Wed, 27 Jan 2010 15:04:36 +0000 Subject: [PATCH] Updated package metadata and marked this as a Plone add-on. svn path=/plone.formwidget.captcha/trunk/; revision=33494 --- CHANGES.txt | 14 ++++++++++++++ docs/HISTORY.txt | 8 -------- docs/INSTALL.txt | 43 ------------------------------------------- docs/LICENSE.txt | 26 +++++++++++++------------- setup.py | 13 +++++-------- 5 files changed, 32 insertions(+), 72 deletions(-) create mode 100644 CHANGES.txt delete mode 100644 docs/HISTORY.txt delete mode 100644 docs/INSTALL.txt diff --git a/CHANGES.txt b/CHANGES.txt new file mode 100644 index 0000000..e678567 --- /dev/null +++ b/CHANGES.txt @@ -0,0 +1,14 @@ +Changelog +========= + +1.0a2 - unreleased +------------------ + +* Updated package metadata and marked this as a Plone add-on. + [hannosch] + +1.0a1 - 2009-08-28 +------------------ + +* Initial release + [timo] diff --git a/docs/HISTORY.txt b/docs/HISTORY.txt deleted file mode 100644 index 0fbc61f..0000000 --- a/docs/HISTORY.txt +++ /dev/null @@ -1,8 +0,0 @@ -Changelog -========= - -1.0a1 - (2009/08/28) --------------------- - -* Initial release - diff --git a/docs/INSTALL.txt b/docs/INSTALL.txt deleted file mode 100644 index 2ec9879..0000000 --- a/docs/INSTALL.txt +++ /dev/null @@ -1,43 +0,0 @@ -plone.formwidget.captcha Installation -------------------------------------- - -To install plone.formwidget.captcha into the global Python environment (or a workingenv), -using a traditional Zope 2 instance, you can do this: - -* When you're reading this you have probably already run - ``easy_install plone.formwidget.captcha``. Find out how to install setuptools - (and EasyInstall) here: - http://peak.telecommunity.com/DevCenter/EasyInstall - -* Create a file called ``plone.formwidget.captcha-configure.zcml`` in the - ``/path/to/instance/etc/package-includes`` directory. The file - should only contain this:: - - - - -Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance -recipe to manage your project, you can do this: - -* Add ``plone.formwidget.captcha`` to the list of eggs to install, e.g.: - - [buildout] - ... - eggs = - ... - plone.formwidget.captcha - -* Tell the plone.recipe.zope2instance recipe to install a ZCML slug: - - [instance] - recipe = plone.recipe.zope2instance - ... - zcml = - plone.formwidget.captcha - -* Re-run buildout, e.g. with: - - $ ./bin/buildout - -You can skip the ZCML slug if you are going to explicitly include the package -from another package's configure.zcml file. diff --git a/docs/LICENSE.txt b/docs/LICENSE.txt index 884f853..9406828 100644 --- a/docs/LICENSE.txt +++ b/docs/LICENSE.txt @@ -1,16 +1,16 @@ - plone.formwidget.captcha is copyright Timo Stollenwerk +plone.formwidget.captcha is copyright Plone Foundation - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, - MA 02111-1307 USA. +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, +MA 02111-1307 USA. diff --git a/setup.py b/setup.py index 969e5f3..6872d3d 100644 --- a/setup.py +++ b/setup.py @@ -1,23 +1,20 @@ from setuptools import setup, find_packages -import os -version = '1.0a1' +version = '1.0a2' setup(name='plone.formwidget.captcha', version=version, description="Captcha widget for Plone.", long_description=open("README.txt").read() + "\n" + - open(os.path.join("docs", "HISTORY.txt")).read(), - # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers + open("CHANGES.txt").read(), classifiers=[ "Framework :: Plone", "Programming Language :: Python", - "Topic :: Software Development :: Libraries :: Python Modules", ], keywords='', author='Timo Stollenwerk', author_email='timo@zmag.de', - url='http://svn.plone.org/svn/plone/plone.formwidget.captcha', + url='http://pypi.python.org/pypi/plone.formwidget.captcha', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['plone'], @@ -25,12 +22,12 @@ setup(name='plone.formwidget.captcha', zip_safe=False, install_requires=[ 'setuptools', - # -*- Extra requirements: -*- 'skimpyGimpy', 'plone.keyring', 'plone.z3cform', ], entry_points=""" - # -*- Entry points: -*- + [z3c.autoinclude.plugin] + target = plone """, )