50 lines
750 B
ReStructuredText
50 lines
750 B
ReStructuredText
|
|
========
|
||
|
|
Overview
|
||
|
|
========
|
||
|
|
|
||
|
|
Protect yourself and your customers with database encryption.
|
||
|
|
|
||
|
|
* Free software: MIT license
|
||
|
|
|
||
|
|
Installation
|
||
|
|
============
|
||
|
|
|
||
|
|
::
|
||
|
|
|
||
|
|
pip install cryptbase
|
||
|
|
|
||
|
|
You can also install the in-development version with::
|
||
|
|
|
||
|
|
pip install git+ssh://git@https://code.eghuro.com/cryptbase/python-cryptbase.git@master
|
||
|
|
|
||
|
|
Documentation
|
||
|
|
=============
|
||
|
|
|
||
|
|
|
||
|
|
https://python-cryptbase.readthedocs.io/
|
||
|
|
|
||
|
|
|
||
|
|
Development
|
||
|
|
===========
|
||
|
|
|
||
|
|
To run all the tests run::
|
||
|
|
|
||
|
|
tox
|
||
|
|
|
||
|
|
Note, to combine the coverage data from all the tox environments run:
|
||
|
|
|
||
|
|
.. list-table::
|
||
|
|
:widths: 10 90
|
||
|
|
:stub-columns: 1
|
||
|
|
|
||
|
|
- - Windows
|
||
|
|
- ::
|
||
|
|
|
||
|
|
set PYTEST_ADDOPTS=--cov-append
|
||
|
|
tox
|
||
|
|
|
||
|
|
- - Other
|
||
|
|
- ::
|
||
|
|
|
||
|
|
PYTEST_ADDOPTS=--cov-append tox
|