From ac17ca4f460b67f438f3bef7b4eacc2c133a7643 Mon Sep 17 00:00:00 2001 From: Jake Hunsaker Date: Thu, 12 Jan 2023 12:53:16 -0500 Subject: [build] Convert to setuptools In python 3.12 distutils will be removed. As such, we need to update to the replacement `setuptools`. This commit makes the basic change over in `setup.py`, so that an `sdist` source tarball can be generated. Note that while this source tarball will still have the `.po` files in it any build tarball (`bdist`) produced via the new `setup.py` will *not* have `.mo` translation files compiled and included at this point. In reviewing this change, it was found that our internationalization is currently broken and very out of date. Future work will focus on fixing that situation, but for now the immediate packaging needs are being addressed. Resolves: #3093 Signed-off-by: Jake Hunsaker --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 55a1d408..4c2138f9 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ venv MANIFEST build/ dist/ +*sos.egg* docs/_build # Pycharm -- cgit