comparison setup.py @ 30:a99009a7013c 0.3.1a

- Use generator with __getfile__ (uses much less memory) - Fixed security issue with __getfile__ - do not allow access to whole disk! - Handle exceptions in auth function - Fixed encrypting of no password - Changed README code examples
author Ben Croston <ben@croston.org>
date Thu, 05 Apr 2012 20:45:56 +0100
parents bea0c77734ca
children fdddfd434bbd
comparison
equal deleted inserted replaced
29:b631d13b252d 30:a99009a7013c
16 extra = {} 16 extra = {}
17 if platform.python_version().startswith('3'): 17 if platform.python_version().startswith('3'):
18 extra['use_2to3'] = True 18 extra['use_2to3'] = True
19 19
20 setup(name = 'AuthRPC', 20 setup(name = 'AuthRPC',
21 version = '0.3.0a', 21 version = '0.3.1a',
22 packages = find_packages(), 22 packages = find_packages(),
23 install_requires = 'WebOb>=1.2b3', 23 install_requires = 'WebOb>=1.2b3',
24 author = 'Ben Croston', 24 author = 'Ben Croston',
25 author_email = 'ben@croston.org', 25 author_email = 'ben@croston.org',
26 description = 'A JSONRPC-like client and server with additions to enable authenticated requests', 26 description = 'A JSONRPC-like client and server with additions to enable authenticated requests',