From d1389b639656742a44d7bfaaf171fe19a0c94140 Mon Sep 17 00:00:00 2001 From: Adam Brenecki Date: Tue, 10 Jul 2012 14:34:11 +0930 Subject: [PATCH] versions, requirements, blah --- mezzanine_events/__init__.py | 1 + setup.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/mezzanine_events/__init__.py b/mezzanine_events/__init__.py index e69de29..0edb2ca 100644 --- a/mezzanine_events/__init__.py +++ b/mezzanine_events/__init__.py @@ -0,0 +1 @@ +__version__ = "0.1pre" diff --git a/setup.py b/setup.py index 748c6d8..ac29195 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup +from setuptools import setup setup(name='mezzanine-events', version='0.1pre', @@ -11,4 +11,7 @@ 'mezzanine_events.migrations', 'mezzanine_events.templatetags', ], + install_requires=[ + 'icalendar==3.0.1b2' + ] )