Recommendation for DS3231 RTC library

I'm using the DS3231 RTC for a data logging project. I have not choses which library is the best for my purposes.
I'm a minimalist guy and would like to find a library that is kinda of "lean". I only need to configure the SQW output and read the time and date. For setup I will use a different ino sketch who's only function is to set the time and date.

Any suggestions / experience would be appreciated.

Unused functions are removed by the compiler

You could also look at any lib’s code (I like Adafruit’s RTClib) and extract the configuration you want to have and not use any library at all.

The DS3231 is a very simple device. To get date and time, you only need to read registers 0x00 to 0x06

bildr » Do You Have The Time? DS1307 RT Clock + Arduino
Works for DS3231.