mirror of
https://github.com/ovh/python-ovh.git
synced 2026-01-16 23:00:21 +00:00
48 lines
1.4 KiB
Python
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"
|
|
],
|
|
)
|