Browse Source

Fixed installation instructions

main
Lakshmi Vyasarajan 14 years ago
parent
commit
78c4964fe2
2 changed files with 4 additions and 2 deletions
  1. +1
    -1
      hyde/layouts/doc/content/install.html
  2. +3
    -1
      setup.py

+ 1
- 1
hyde/layouts/doc/content/install.html View File

@@ -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


+ 3
- 1
setup.py View File

@@ -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={


Loading…
Cancel
Save