From 78c4964fe2926a04d4493e9cf1467d9b7b0b5f76 Mon Sep 17 00:00:00 2001 From: Lakshmi Vyasarajan Date: Thu, 27 Jan 2011 12:12:41 +0530 Subject: [PATCH] Fixed installation instructions --- hyde/layouts/doc/content/install.html | 2 +- setup.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/hyde/layouts/doc/content/install.html b/hyde/layouts/doc/content/install.html index 71e3f45..d21a8c4 100644 --- a/hyde/layouts/doc/content/install.html +++ b/hyde/layouts/doc/content/install.html @@ -9,7 +9,7 @@ created: 2011-01-26 23:17:44 Installing hyde is as simple as running the following command: ~~~sh~~~ -pip install -e https://github.com/hydepy/hyde#egg=hyde +pip install -e git://github.com/hydepy/hyde.git#egg=hyde ~~~~~~~~ However, based on your choice and use of plugins you may need to install diff --git a/setup.py b/setup.py index 8ab93c9..86b4d67 100644 --- a/setup.py +++ b/setup.py @@ -9,10 +9,12 @@ setup(name='hyde', url='http://ringce.com/hyde', packages=find_packages(), install_requires=( + 'argparse', 'commando', 'jinja2', 'pyYAML', - 'markdown' + 'markdown', + 'pygments' ), scripts=['main.py'], entry_points={