blob: b72e95ce049c4c67c6487a2171fec8d1b0b958b1 (
plain)
1
2
3
4
5
6
7
8
9
|
#! /usr/bin/env python3
"""Ansible-lint distribution package setuptools installer.
The presence of this file ensures the support
of pip editable mode *with setuptools only*.
"""
from setuptools import setup
__name__ == '__main__' and setup() # pylint: disable=expression-not-assigned
|