Mercurial > hg > AuthRPC
annotate setup.py @ 33:74ea9a0ed02a default tip
Added tag 0.3.2a for changeset fdddfd434bbd
author | Ben Croston <ben@croston.org> |
---|---|
date | Sat, 19 Oct 2013 21:24:33 +0100 |
parents | fdddfd434bbd |
children |
rev | line source |
---|---|
0 | 1 #!/usr/bin/env python |
32
fdddfd434bbd
- Remove dependency on distribute
Ben Croston <ben@croston.org>
parents:
30
diff
changeset
|
2 from distutils.core import setup |
fdddfd434bbd
- Remove dependency on distribute
Ben Croston <ben@croston.org>
parents:
30
diff
changeset
|
3 try: |
fdddfd434bbd
- Remove dependency on distribute
Ben Croston <ben@croston.org>
parents:
30
diff
changeset
|
4 from distutils.command.build_py import build_py_2to3 as build_py |
fdddfd434bbd
- Remove dependency on distribute
Ben Croston <ben@croston.org>
parents:
30
diff
changeset
|
5 except ImportError: |
fdddfd434bbd
- Remove dependency on distribute
Ben Croston <ben@croston.org>
parents:
30
diff
changeset
|
6 from distutils.command.build_py import build_py |
0 | 7 |
8 classifiers = ['Development Status :: 3 - Alpha', | |
4 | 9 'Operating System :: OS Independent', |
0 | 10 'License :: OSI Approved :: MIT License', |
4 | 11 'Intended Audience :: Developers', |
0 | 12 'Programming Language :: Python :: 2.7', |
13 'Programming Language :: Python :: 3', | |
14 'Topic :: Software Development', | |
4 | 15 'Topic :: Internet :: WWW/HTTP :: WSGI'] |
16 | |
15 | 17 setup(name = 'AuthRPC', |
32
fdddfd434bbd
- Remove dependency on distribute
Ben Croston <ben@croston.org>
parents:
30
diff
changeset
|
18 version = '0.3.2a', |
fdddfd434bbd
- Remove dependency on distribute
Ben Croston <ben@croston.org>
parents:
30
diff
changeset
|
19 packages = ['AuthRPC', 'AuthRPC.server', 'AuthRPC.client'], |
fdddfd434bbd
- Remove dependency on distribute
Ben Croston <ben@croston.org>
parents:
30
diff
changeset
|
20 install_requires = 'WebOb>=1.2.3', |
0 | 21 author = 'Ben Croston', |
22 author_email = 'ben@croston.org', | |
20 | 23 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
|
24 long_description = open('README.txt').read() + open('CHANGELOG.txt').read(), |
0 | 25 license = 'MIT', |
15 | 26 keywords = 'json, rpc, wsgi, auth', |
27 url = 'http://www.wyre-it.co.uk/authrpc/', | |
4 | 28 classifiers = classifiers, |
29 platforms = ['Any'], | |
32
fdddfd434bbd
- Remove dependency on distribute
Ben Croston <ben@croston.org>
parents:
30
diff
changeset
|
30 cmdclass = {'build_py': build_py}) |