|
1 | 1 | #!/usr/bin/env python
|
2 | 2 | # -*- 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 |
7 | 4 | from os.path import dirname, join
|
8 | 5 | import re
|
9 | 6 |
|
|
18 | 15 | url='https://github.com/openx/OX3-Python-API-Client',
|
19 | 16 | description='Client to connect to OpenX Enterprise API.',
|
20 | 17 | long_description='Client to connect to OpenX Enterprise API.',
|
21 |
| - packages=['ox3apiclient'], |
| 18 | + packages=find_packages(), |
22 | 19 | install_requires=['requests_oauthlib'],
|
23 | 20 | 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