Skip to content

Commit 0a3d8c9

Browse files
committed
Merge branch 'release-0.2.0' into develop
2 parents ecaf886 + b8a2bbb commit 0a3d8c9

3 files changed

Lines changed: 29 additions & 2 deletions

File tree

History.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
0.2.0 / 2012-08-29
2+
==================
3+
4+
* Fixed: JSON parse error when deleting objects with call to `Client.delete()`
5+
* Added: "Official" support for Python 2.4, 2.5, 2.6
6+
* Added: `logon` and `logoff` convenience methods.
7+
* Added: `client_from_file` to load credentials from a config file.
8+
* `OX3APIClient` is deprecated; use `Client` instead.
9+
10+
0.1.0 / 2012-08-26
11+
==================
12+
13+
* "Official release"

ox3apiclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
import urlparse
2626

27-
__version__ = '0.1.0'
27+
__version__ = '0.2.0'
2828

2929
REQUEST_TOKEN_URL = 'https://sso.openx.com/api/index/initiate'
3030
ACCESS_TOKEN_URL = 'https://sso.openx.com/api/index/token'

setup.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,18 @@
1717
description='Client to connect to OpenX Enterprise API.',
1818
long_description='Client to connect to OpenX Enterprise API.',
1919
packages=['ox3apiclient'],
20-
install_requires=['oauth2'])
20+
install_requires=['oauth2'],
21+
classifiers=[
22+
'Environment :: Console',
23+
'Environment :: Web Environment',
24+
'Intended Audience :: Developers',
25+
'Operating System :: OS Independent',
26+
'Programming Language :: Python',
27+
'Programming Language :: Python :: 2.4',
28+
'Programming Language :: Python :: 2.5',
29+
'Programming Language :: Python :: 2.6',
30+
'Programming Language :: Python :: 2.7',
31+
'Programming Language :: Python :: Implementation :: CPython',
32+
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
33+
'Topic :: Software Development :: Libraries',
34+
'Topic :: Software Development :: Libraries :: Python Modules'])

0 commit comments

Comments
 (0)