diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 000000000..1cd3f0437 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,9 @@ +include LICENSE +include CHANGELOG +include README.txt +exclude README.mkd +recursive-include test * +recursive-include libpathod/resources * +recursive-include libpathod/templates * +recursive-include libpathod/static * +recursive-exclude test *.swo *.swp *.pyc diff --git a/libpathod/app.py b/libpathod/app.py index 7d9636e14..c7d0e7b2a 100644 --- a/libpathod/app.py +++ b/libpathod/app.py @@ -42,6 +42,12 @@ def index(): return render("index.html", True, section="main") +@app.route('/download') +@app.route('/download.html') +def download(): + return render("download.html", True, section="download") + + @app.route('/about') @app.route('/about.html') def about(): diff --git a/libpathod/templates/about.html b/libpathod/templates/about.html index 3c05ad2d8..4bf473daf 100644 --- a/libpathod/templates/about.html +++ b/libpathod/templates/about.html @@ -1,30 +1,6 @@ {% extends "frame.html" %} {% block body %} -
- - -

The easiest way to install pathod is to use pip:

- -
pip install pathod
- -

You can find the project source on GitHub:

- -
- github.com/cortesi/pathod -
- -

Please also use the github issue tracker to - report bugs.

- -
-