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
This commit is contained in:
Ian Wienand 2021-05-31 13:32:33 +10:00
parent 36a94f9d97
commit eec003e3e3
2 changed files with 4 additions and 1 deletions

3
pyproject.toml Normal file
View File

@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

View File

@ -1,5 +1,5 @@
from setuptools import setup
from distutils.core import setup
setup(name='MeetBot',
description='IRC Meeting Helper',
version='0.1.4',