Mercurial > hg > AuthRPC
annotate setup.py @ 27:689d75bb60c2
Added tag 0.2.0a for changeset 346114023528
author | Ben Croston <ben@croston.org> |
---|---|
date | Tue, 28 Feb 2012 13:18:33 +0000 |
parents | 346114023528 |
children | bea0c77734ca |
rev | line source |
---|---|
0 | 1 #!/usr/bin/env python |
2 import distribute_setup | |
3 distribute_setup.use_setuptools() | |
4 from setuptools import setup, find_packages | |
1 | 5 import platform |
0 | 6 |
7 classifiers = ['Development Status :: 3 - Alpha', | |
4 | 8 'Operating System :: OS Independent', |
0 | 9 'License :: OSI Approved :: MIT License', |
4 | 10 'Intended Audience :: Developers', |
0 | 11 'Programming Language :: Python :: 2.7', |
12 'Programming Language :: Python :: 3', | |
13 'Topic :: Software Development', | |
4 | 14 'Topic :: Internet :: WWW/HTTP :: WSGI'] |
15 | |
16 extra = {} | |
17 if platform.python_version().startswith('3'): | |
18 extra['use_2to3'] = True | |
0 | 19 |
15 | 20 setup(name = 'AuthRPC', |
26 | 21 version = '0.2.0a', |
22
9459d63c1558
Added full support for Python 3
Ben Croston <ben@croston.org>
parents:
20
diff
changeset
|
22 packages = find_packages(), |
9459d63c1558
Added full support for Python 3
Ben Croston <ben@croston.org>
parents:
20
diff
changeset
|
23 install_requires = 'WebOb>=1.2b2', |
0 | 24 author = 'Ben Croston', |
25 author_email = 'ben@croston.org', | |
20 | 26 description = 'A JSONRPC-like client and server with additions to enable authenticated requests', |
22
9459d63c1558
Added full support for Python 3
Ben Croston <ben@croston.org>
parents:
20
diff
changeset
|
27 long_description = open('README.txt').read() + open('CHANGELOG.txt').read(), |
0 | 28 license = 'MIT', |
15 | 29 keywords = 'json, rpc, wsgi, auth', |
30 url = 'http://www.wyre-it.co.uk/authrpc/', | |
4 | 31 classifiers = classifiers, |
32 platforms = ['Any'], | |
15 | 33 test_suite = 'AuthRPC.tests.suite', |
4 | 34 **extra) |
0 | 35 |