From 1234802f513acd08a534214a35c96a60f943ecc5 Mon Sep 17 00:00:00 2001 From: Unrud Date: Thu, 9 Dec 2021 19:32:47 +0100 Subject: [PATCH] Use " instead of ' --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 02891cc..114da3a 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ setup( platforms="Any", packages=find_packages( exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), - package_data={"radicale": [*WEB_FILES, 'py.typed']}, + package_data={"radicale": [*WEB_FILES, "py.typed"]}, entry_points={"console_scripts": ["radicale = radicale.__main__:run"]}, install_requires=["defusedxml", "passlib", "vobject>=0.9.6", "python-dateutil>=2.7.3", "setuptools"],