forked from sosy-lab/benchexec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·23 lines (18 loc) · 836 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
# This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0
import setuptools
import warnings
warnings.filterwarnings("default", module=r"^benchexec\..*")
# This file is required for compatibility with
# - pip<19.0 (older than our minium Python version, so irrelevant)
# - editable mode (pip install -e .) with pip<21.3 (not important)
# - building Debian packages without build dependency pybuild-plugin-pyproject
# As the last one is not available on Ubuntu 20.04, we need to keep setup.py
# for now, but should consider updating the Debian package build and removing setup.py
# once we drop support for Ubuntu 20.04.
setuptools.setup()