Updated package metadata and marked this as a Plone add-on.

svn path=/plone.formwidget.captcha/trunk/; revision=33494
This commit is contained in:
Hanno Schlichting 2010-01-27 15:04:36 +00:00
parent 0c639a8183
commit 23e4397e51
5 changed files with 32 additions and 72 deletions

14
CHANGES.txt Normal file
View File

@ -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]

View File

@ -1,8 +0,0 @@
Changelog
=========
1.0a1 - (2009/08/28)
--------------------
* Initial release

View File

@ -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::
<include package="plone.formwidget.captcha" />
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.

View File

@ -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.

View File

@ -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
""",
)