mirror of
https://github.com/ovh/python-ovh.git
synced 2026-01-16 23:00:21 +00:00
20 lines
363 B
Python
20 lines
363 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,
|
|
tests_require=[
|
|
"coverage==3.7.1",
|
|
"mock==1.0.1",
|
|
"nose==1.3.3",
|
|
"yanc==0.2.4",
|
|
],
|
|
)
|
|
|