Skip to content

Commit c61bb79

Browse files
committed
Updated setup.py
1 parent 59b538a commit c61bb79

File tree

3 files changed

+18
-19
lines changed

3 files changed

+18
-19
lines changed

History.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
0.5.1 / 2013-08-11
1+
0.5.2 / 2017-02-02
22
==================
33
* Fixed: packaging for Pypi
44
* Added: license information

ox3apiclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import requests
1313
from requests_oauthlib import OAuth1
1414

15-
__version__ = '0.5.1'
15+
__version__ = '0.5.2'
1616

1717
REQUEST_TOKEN_URL = 'https://sso.openx.com/api/index/initiate'
1818
ACCESS_TOKEN_URL = 'https://sso.openx.com/api/index/token'

setup.py

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
try:
4-
from setuptools import setup
5-
except ImportError:
6-
from distutils.core import setup
3+
from setuptools import setup, find_packages
74
from os.path import dirname, join
85
import re
96

@@ -18,18 +15,20 @@
1815
url='https://github.com/openx/OX3-Python-API-Client',
1916
description='Client to connect to OpenX Enterprise API.',
2017
long_description='Client to connect to OpenX Enterprise API.',
21-
packages=['ox3apiclient'],
18+
packages=find_packages(),
2219
install_requires=['requests_oauthlib'],
2320
classifiers=[
24-
'Environment :: Console',
25-
'Environment :: Web Environment',
26-
'Intended Audience :: Developers',
27-
'Operating System :: OS Independent',
28-
'License :: OSI Approved :: BSD License',
29-
'Programming Language :: Python',
30-
'Programming Language :: Python :: 2.6',
31-
'Programming Language :: Python :: 2.7',
32-
'Programming Language :: Python :: Implementation :: CPython',
33-
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
34-
'Topic :: Software Development :: Libraries',
35-
'Topic :: Software Development :: Libraries :: Python Modules'])
21+
'Environment :: Console',
22+
'Environment :: Web Environment',
23+
'Intended Audience :: Developers',
24+
'Operating System :: OS Independent',
25+
'License :: OSI Approved :: BSD License',
26+
'Programming Language :: Python',
27+
'Programming Language :: Python :: 2.6',
28+
'Programming Language :: Python :: 2.7',
29+
'Programming Language :: Python :: Implementation :: CPython',
30+
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
31+
'Topic :: Software Development :: Libraries',
32+
'Topic :: Software Development :: Libraries :: Python Modules',
33+
],
34+
)

0 commit comments

Comments
 (0)