blob: 923f2d7a7841d78ecb518ad27b3a84ef809193cf (
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
|
Soledad -- Synchronization Of Locally Encrypted Data Among Devices
==================================================================
This software is under development.
Dependencies
------------
Soledad depends on the following python libraries:
* u1db 0.1.4 [1]
* python-gnupg 0.3.1 [2]
* CouchDB 0.8 [3]
* hmac 20101005 [4]
* pysqlcipher [5]
[1] http://pypi.python.org/pypi/u1db/0.1.4
[2] http://pypi.python.org/pypi/python-gnupg/0.3.1
[3] http://pypi.python.org/pypi/CouchDB/0.8
[4] http://pypi.python.org/pypi/hmac/20101005
[5] Instructions for downloading and installing are below.
pysqlcipher
-----------
Pysqlcipher is an experimental fork of pysqlite, and is statically linked
against sqlcipher.
To install it, do the following:
git clone git://git.futeisha.org/pysqlcipher.git
cd pysqlcipher
python setup.py install
Tests
-----
Right now, there are 3 conditions that have to be met for all Soledad tests to
pass without problems:
1. Use nose2.
2. Have CouchDB installed in the system.
3. Have pysqlcipher module properly installed as described above.
Soledad's tests should be run with nose2, like this:
nose2 leap.soledad.tests
|