diff options
| -rw-r--r-- | INSTALL.txt | 31 | ||||
| -rw-r--r-- | setup.py | 4 |
2 files changed, 34 insertions, 1 deletions
diff --git a/INSTALL.txt b/INSTALL.txt new file mode 100644 index 0000000..b4a1d46 --- a/dev/null +++ b/INSTALL.txt @@ -0,0 +1,31 @@ +# Installation + +## Requirements + +Python version 2.6 at least, sqlite lib, event lib and the following python +packages: SQLAlchemy, gevent. For fancy text search you will also need to +install Xapian libraries and python packages (which IIRC are not +easy-installable...). + +Ideally you should safely run the usual `python setup.py install` and get the +shit done, but first you must install all the C libraries with your distribution +package tools. + +Debian/Ubuntu: + +- libsqlite3-0 +- libevent-1.4-2 +- libxapian22 +- python-xapian + +Python packages installation: + + # easy_install SQLAlchemy gevent + +or + + # pip install SQLAlchemy gevent + +or + + # aptitude install tuasorella @@ -15,7 +15,9 @@ setup( zip_safe=False, packages=find_packages(), package_data={ - "pinolo": ['data/*.txt', 'data/prcd/*'], + "pinolo": ['data/*.txt', 'data/prcd/*', + 'plugins/*.txt' + ], }, entry_points={ "console_scripts": [ |

