Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
Preparing release 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 21, 2016
1 parent 6ac5b1f commit 9375d13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 26 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

1.7.0 (unreleased)
1.7.0 (2016-10-21)
------------------

- Remove all the code because it is now totally broken
Expand Down
28 changes: 3 additions & 25 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,15 @@
from setuptools import setup, find_packages


raise NotImplementedError("""
This package no longer works! It reportedly allows ANYONE to authenticate with
ANY PASSWORD, see https://github.com/zopefoundation/cipher.googlepam/issues/1
for more details.
""")


def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
return f.read()


setup(
name='cipher.googlepam',
version='1.6.1.dev0',
description='Google PAM Module',
version='1.7.0',
description='Google PAM Module (defunct)',
long_description=read('README.rst') + '\n\n' + read('CHANGES.rst'),
classifiers=[
"Development Status :: 4 - Beta",
Expand All @@ -47,24 +38,11 @@ def read(*rnames):
author_email="stephan.richter@gmail.com",
url='http://pypi.python.org/pypi/cipher.googlepam',
keywords='pam google',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['cipher'],
packages=[],
include_package_data=True,
zip_safe=False,
extras_require=dict(
test=[
'zope.testing',
],
),
install_requires=[
'gdata',
'py-bcrypt',
'python-memcached',
'setuptools',
],
entry_points = """
[console_scripts]
add-google-users=cipher.googlepam.addusers:main
""",
)

0 comments on commit 9375d13

Please sign in to comment.