python-ovh/setup.py
Adrien Barreau b24d52e619 chore: apply black formatting
Signed-off-by: Adrien Barreau <adrien.barreau@ovhcloud.com>
2023-03-06 16:43:11 +00:00

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()