Metadata-Version: 2.1
Name: differential-privacy
Version: 0.1.0
Summary: A library that contains differential privacy algorithms from the literature.
Home-page: https://github.com/robomotic/differential-privacy
Author: Paolo Di Prodi
Author-email: paolo@logstotal.com
License: MIT
Description: # Python Differential Privacy Library
        
        [![PyPi version](https://img.shields.io/pypi/v/differential-privacy.svg)](https://pypi.python.org/pypi/differential-privacy)
        
        A library that contains implementations of differential privacy algorithms found in literature.
        
        Usage
        -----
        
        ## Setup
        
        ### Installation with `pip`
        
        The library is designed to run with Python 3.
        The library can be installed from the PyPi repository using `pip` (or `pip3`):
        
        ```bash
        pip install differential-privacy
        ```
        
        ### Manual installation
        
        For the most recent version of the library, either download the source code or clone the repository in your directory of choice:
        
        ```bash
        git clone https://github.com/robomotic/differential-privacy.git
        ```
        
        To install `differential-privacy`, do the following in the project folder (alternatively, you can run `python3 -m pip install .`):
        ```bash
        pip install .
        ```
        
        The library comes with a basic set of unit tests for `pytest`. To check your install, you can run all the unit tests by calling `pytest` in the install folder:
        
        ```bash
        pytest
        ```
        
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
