From eec003e3e395abdc61614a58cfcc0ec3cbb58ac1 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Mon, 31 May 2021 13:32:33 +1000 Subject: [PATCH] Switch to setuptools Apart from just being the modern thing to do, this allows bdist_wheel to work, which is important for installing with our existing container python-builder tooling. Change-Id: Id884f7db1dcb59406e6f08cd9ec904fe3a32d2e9 --- pyproject.toml | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9787c3b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" diff --git a/setup.py b/setup.py index 8569fd9..8c70096 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ +from setuptools import setup -from distutils.core import setup setup(name='MeetBot', description='IRC Meeting Helper', version='0.1.4',