diff options
| author | sand <daniel@spatof.org> | 2012-02-16 15:18:44 (GMT) |
|---|---|---|
| committer | sand <daniel@spatof.org> | 2012-02-16 15:18:44 (GMT) |
| commit | 934685276f2c07151da8f527fe26491646384a88 (patch) | |
| tree | 869b6e1829f1ff96bde457e0205891090c108144 | |
| parent | ae9090acbbf665a3fa435fb94a99c90c781f85e2 (diff) | |
| -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": [ |

