I'm trying to use python-stix which relies on mixbox. However, this mixbox still relies on distutils in it's [parser](https://github.com/CybOXProject/mixbox/blob/master/mixbox/parser.py#L5). However, distutils has been deprecated since python 3.10 and has been officially removed from python 3.12 [[python3.10/distutils]](https://docs.python.org/3.10/library/distutils.html). This [thread on stackoverflow](https://stackoverflow.com/questions/69858963/how-can-one-fully-replace-distutils-which-is-deprecated-in-3-10) has a more detailed discussion on how to replace distutils via [setuptools](https://pypi.org/project/setuptools/). Since, [mixbox/parser.py](https://github.com/CybOXProject/mixbox/blob/master/mixbox/parser.py) uses distutils just for checking/managing versions, I believe this should be a quick fix.