Remove unsecure methods from htpasswd and make md5 default

This commit is contained in:
Unrud 2020-01-19 18:26:14 +01:00
parent 0a5fd94577
commit 6108d8d759
6 changed files with 21 additions and 98 deletions

View file

@ -73,12 +73,11 @@ setup(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data={"radicale": WEB_FILES},
entry_points={"console_scripts": ["radicale = radicale.__main__:run"]},
install_requires=["vobject>=0.9.6", "python-dateutil>=2.7.3"],
install_requires=["passlib", "vobject>=0.9.6", "python-dateutil>=2.7.3"],
setup_requires=pytest_runner,
tests_require=tests_require,
extras_require={
"test": tests_require,
"md5": "passlib",
"bcrypt": "passlib[bcrypt]"},
keywords=["calendar", "addressbook", "CalDAV", "CardDAV"],
python_requires=">=3.5.2",