Cleanup setup.py

Python 2 is no longer supported. Also the setup.py file is no longer
managed by the global tooling.

Change-Id: Ica63e810aa911a51f66c2b8110cc305992cfddf2
This commit is contained in:
Takashi Kajinami 2024-01-12 17:47:25 +09:00
parent fed123085d
commit a4a2b11fd1

@ -13,17 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
import setuptools
# In python < 2.7.4, a lazy loading of package `pbr` will break
# setuptools if some other modules registered functions in `atexit`.
# solution from: http://bugs.python.org/issue15881#msg170215
try:
import multiprocessing # noqa
except ImportError:
pass
setuptools.setup(
setup_requires=['pbr>=2.0.0'],
pbr=True)