aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnrud <unrud@openaliasbox.org>2018-08-29 05:18:34 +0200
committerUnrud <unrud@openaliasbox.org>2018-08-29 05:18:34 +0200
commit026ade936c2aa2fd28358e9782f3a0095285d33d (patch)
tree3d9395b48b78cec2e32db26afa5bc872242b26eb
parentMove VERSION to setup.py (diff)
downloadradicaleinfcloud-026ade936c2aa2fd28358e9782f3a0095285d33d.tar.gz
radicaleinfcloud-026ade936c2aa2fd28358e9782f3a0095285d33d.tar.bz2
radicaleinfcloud-026ade936c2aa2fd28358e9782f3a0095285d33d.zip
add dependency on radicale
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 423a443..b0c9244 100644
--- a/setup.py
+++ b/setup.py
@@ -22,4 +22,5 @@ setup(
license="GNU AGPL v3",
platforms="Any",
packages=["radicale_infcloud"],
- package_data={"radicale_infcloud": web_data})
+ package_data={"radicale_infcloud": web_data},
+ install_requires=["radicale>=2.1.0"])
bgstack15