blob: 9dbaea0ae009edc47d9812b91304c801e80393fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# pinolo: The naughty IRC bot
pinolo is an IRC bot written for fun.
## Requirements
- python >= 2.5
- SQLAlchemy
- Xapian
- gevent
## Getting started
### From source
- Check out the pinolo source code using git:
git clone git://git.dyne.org/pinolo.git
- Install the needed python libraries (including the development
libraries); with Debian/Ubuntu this is usually:
apt-get intall python-gevent python-sqlalchemy python-xapian
Or with pip:
pip install -r doc/requirements.txt
- Install pinolo:
python setup.py install
### Development mode
- Install pinolo in development mode:
cd pinolo/
pip install -e ./
## Notes
The code is messy and ugly.
## License
BSD, see included *LICENSE* file.
|