mythmon / wok

A static website generator - Toss some content, templates, and media in a pan and fry it up!
http://wok.mythmon.com
Other
113 stars 46 forks source link

Question about installation dependencies (setup.py) #122

Open gchriz opened 10 years ago

gchriz commented 10 years ago

Hi, some days ago I found wok and it seems to fit exactly my needs! :-)

I initially installed wok with pip as described in the docu. Unfortunately pip installed several dependencies than as well - although they already existed in newer(!) versions on my system. So some packages got overwritten with older versions. I had to repair it manually - and learned quite a bit about pip and Python packages...

Later I cloned your wok Git repository and tried to find out what happens.

In setup.py you are using :

install_requires=[
       'Jinja2==2.6',
       'Markdown==2.1.1',
       'PyYAML==3.10',
       'Pygments==1.4',
       'docutils==0.8.1',
       'awesome-slugify==1.4',
       'pytest==2.5.2',
   ],

I assume the "==" causes the problems. Wouldn't a "greater or equal than" be sufficient here?

BTW: The "regex" package seems to be required as well.

Anyway: Great work, your wok!