summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 374aeca1ee9b9c9b18506e6270abc4bf5d9401d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: Ansible Project, 2020

"""
Minimal setup.py for compatibility with older tools.
Configuration is in setup.cfg.
Users are recommended to use tools like pip and build and the PEP 517 interface
instead of setuptools' deprecated setup.py interface.
"""

from setuptools import setup

setup()