python-ovh/setup.py
Jean-Tiare Le Bigot 7557bb804b fix missing cacert.pem file in package. Closes #23
Signed-off-by: Jean-Tiare Le Bigot <jean-tiare.le-bigot@corp.ovh.com>
2016-04-11 11:15:11 +02:00

24 lines
462 B
Python

#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
setup_requires=['d2to1'],
d2to1=True,
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",
],
)