mirror of
https://github.com/ovh/python-ovh.git
synced 2026-01-11 17:56:26 +00:00
13 lines
218 B
Python
13 lines
218 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distribute_setup import use_setuptools
|
|
|
|
use_setuptools()
|
|
from setuptools import setup
|
|
|
|
|
|
setup()
|