Commit aea1ab75 authored by nimrod's avatar nimrod
Browse files

Depend on mysqlclient instead of MySQL-Python.

The latter is not supported, hasn't been touched in years and isn't
packaged in any OS anymore (the only reason I was using thus far).
parent a186cc31
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ setup(
    ],
    keywords="nagios mysql slave replication monitoring",
    packages=find_packages(),
    install_requires=["MySQL-python"],
    install_requires=["mysqlclient"],
    entry_points={
        "console_scripts": ["check_mysql_slave=check_mysql_slave:main"],
    },