Mercurial > hg > AuthRPC
comparison setup.py @ 20:4b62687da58a
Added batch requests
Refactored code
Added some extra tests
author | Ben Croston <ben@croston.org> |
---|---|
date | Sun, 11 Sep 2011 22:27:42 +0100 |
parents | 0dacc8e37fd9 |
children | 9459d63c1558 |
comparison
equal
deleted
inserted
replaced
19:636405ae3a66 | 20:4b62687da58a |
---|---|
25 # we can't build server with python 3 | 25 # we can't build server with python 3 |
26 exclude.append('AuthRPC.server') | 26 exclude.append('AuthRPC.server') |
27 extra['use_2to3'] = True | 27 extra['use_2to3'] = True |
28 | 28 |
29 setup(name = 'AuthRPC', | 29 setup(name = 'AuthRPC', |
30 version = '0.0.1a', | 30 version = '0.0.2a', |
31 packages = find_packages(exclude=exclude), | 31 packages = find_packages(exclude=exclude), |
32 install_requires = install_requires, | 32 install_requires = install_requires, |
33 author = 'Ben Croston', | 33 author = 'Ben Croston', |
34 author_email = 'ben@croston.org', | 34 author_email = 'ben@croston.org', |
35 description = 'A JSONRPC-like client and server with additions to enable authentication', | 35 description = 'A JSONRPC-like client and server with additions to enable authenticated requests', |
36 long_description = open('README.txt').read(), | 36 long_description = open('README.txt').read(), |
37 license = 'MIT', | 37 license = 'MIT', |
38 keywords = 'json, rpc, wsgi, auth', | 38 keywords = 'json, rpc, wsgi, auth', |
39 url = 'http://www.wyre-it.co.uk/authrpc/', | 39 url = 'http://www.wyre-it.co.uk/authrpc/', |
40 classifiers = classifiers, | 40 classifiers = classifiers, |