#!/usr/bin/env python # -*- coding: utf-8 -*- from setuptools import setup, find_packages from os.path import dirname, join import re file_path = join(dirname(__file__), 'ox3apiclient', '__init__.py') version = re.search("__version__\s*=\s*['\"](.+)['\"]", open(file_path, 'r').read()).groups()[0] setup(name='ox3apiclient', version=version, author='OpenX API Team', author_email='api@openx.com', url='https://github.com/openx/OX3-Python-API-Client', description='Client to connect to OpenX Enterprise API.', long_description='Client to connect to OpenX Enterprise API.', packages=find_packages(), install_requires=['requests_oauthlib'], classifiers=[ 'Environment :: Console', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: Implementation :: CPython', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules', ], )