thp / minidb

Store Python objects in SQLite 3. Concise, pythonic API. Easy to write, relatively easy to read. A kind of super simple ORM, if you will. Give it a try.
https://thp.io/2010/minidb/
Other
66 stars 15 forks source link

Switch from the distutils to setuptools #20

Closed mwerlen closed 7 months ago

mwerlen commented 8 months ago

The distutils modules has been removed in python 3.12 so minidb can't be built on a fresh 3.12 installation.

This MR switch from distutils package to setuptools which provides the same API.

More info :

mwerlen commented 7 months ago

Thanks for the review. I'm not confident enough in my python skill to work on switching from setup.py to pyproject.toml, but I will look a bit at the documentation :)