python-ovh/setup.py
Jean-Tiare Le Bigot ba4f62fab2 [auto] bump version to v0.4.3
Signed-off-by: Jean-Tiare Le Bigot <jean-tiare.le-bigot@corp.ovh.com>
2016-07-15 13:52:17 +02:00

48 lines
1.4 KiB
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = "ovh",
version = "0.4.3",
setup_requires=['setuptools'],
author = "Jean-Tiare Le Bigot",
author_email = "jean-tiare.le-bigot@corp.ovh.com",
description = "Official OVH.com API wrapper",
license = "BSD",
keywords = "ovh sdk rest",
url = "http://api.ovh.com",
packages = find_packages(exclude=['tests']),
package_data={
'ovh.vendor.requests': ['*.pem'],
},
include_package_data=True,
tests_require=[
"coverage==3.7.1",
"mock==1.0.1",
"nose==1.3.3",
"yanc==0.2.4",
],
classifiers=[
"License :: OSI Approved :: BSD License"
"Development Status :: 4 - Beta"
"Intended Audience :: Developers"
"Operating System :: OS Independent"
"Programming Language :: Python"
"Programming Language :: Python :: 2.6"
"Programming Language :: Python :: 2.7"
"Programming Language :: Python :: 3.2"
"Programming Language :: Python :: 3.3"
"Programming Language :: Python :: 3.4"
"Programming Language :: Python :: 3.5"
"Topic :: Software Development :: Libraries :: Python Modules"
"Topic :: System :: Archiving :: Packaging"
],
)