Mercurial > hg > AuthRPC
comparison setup.py @ 15:3c19ae16fc7a
Renamed to AuthRPC
author | Ben Croston <ben@croston.org> |
---|---|
date | Mon, 05 Sep 2011 21:18:18 +0100 |
parents | 685479d1f0a7 |
children | 0dacc8e37fd9 |
comparison
equal
deleted
inserted
replaced
14:45c1d78559e2 | 15:3c19ae16fc7a |
---|---|
6 | 6 |
7 classifiers = ['Development Status :: 3 - Alpha', | 7 classifiers = ['Development Status :: 3 - Alpha', |
8 'Operating System :: OS Independent', | 8 'Operating System :: OS Independent', |
9 'License :: OSI Approved :: MIT License', | 9 'License :: OSI Approved :: MIT License', |
10 'Intended Audience :: Developers', | 10 'Intended Audience :: Developers', |
11 'Programming Language :: Python :: 2.6', | |
12 'Programming Language :: Python :: 2.7', | 11 'Programming Language :: Python :: 2.7', |
13 'Programming Language :: Python :: 3', | 12 'Programming Language :: Python :: 3', |
14 'Topic :: Software Development', | 13 'Topic :: Software Development', |
15 'Topic :: Internet :: WWW/HTTP :: WSGI'] | 14 'Topic :: Internet :: WWW/HTTP :: WSGI'] |
16 | 15 |
22 # we can build server with python 2 | 21 # we can build server with python 2 |
23 install_requires.append('webob>=1.0.0') | 22 install_requires.append('webob>=1.0.0') |
24 | 23 |
25 if platform.python_version().startswith('3'): | 24 if platform.python_version().startswith('3'): |
26 # we can't build server with python 3 | 25 # we can't build server with python 3 |
27 exclude.append('wibble.server') | 26 exclude.append('authrpc.server') |
28 extra['use_2to3'] = True | 27 extra['use_2to3'] = True |
29 | 28 |
30 setup(name = 'Wibble', | 29 setup(name = 'AuthRPC', |
31 version = '0.0.1a', | 30 version = '0.0.1a', |
32 packages = find_packages(exclude=exclude), | 31 packages = find_packages(exclude=exclude), |
33 install_requires = install_requires, | 32 install_requires = install_requires, |
34 author = 'Ben Croston', | 33 author = 'Ben Croston', |
35 author_email = 'ben@croston.org', | 34 author_email = 'ben@croston.org', |
36 description = 'Stick two pencils up your nose, underpants on your head then run this module.', | 35 description = 'A JSONRPC-like client and server with additions to enable authentication', |
37 long_description = open('README.txt').read(), | 36 long_description = open('README.txt').read(), |
38 license = 'MIT', | 37 license = 'MIT', |
39 keywords = 'jsonrpc', | 38 keywords = 'json, rpc, wsgi, auth', |
40 url = 'http://www.wyre-it.co.uk/wibble/', | 39 url = 'http://www.wyre-it.co.uk/authrpc/', |
41 classifiers = classifiers, | 40 classifiers = classifiers, |
42 platforms = ['Any'], | 41 platforms = ['Any'], |
43 test_suite = 'wibble.tests.suite', | 42 test_suite = 'AuthRPC.tests.suite', |
44 **extra) | 43 **extra) |
45 | 44 |