-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add new readme, disable flaky test (#187)
- Loading branch information
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# DP Wizard | ||
|
||
DP Wizard guides the user through the application of differential privacy. | ||
After selecting a local CSV, users are prompted to describe to the anlysis they need. | ||
Output options include: | ||
- A Jupyter notebook which demonstrates how to use [OpenDP](https://docs.opendp.org/). | ||
- A plain Python script. | ||
- Text and CSV reports. | ||
|
||
## Usage | ||
|
||
``` | ||
usage: dp-wizard [-h] [--csv CSV_PATH] [--contrib CONTRIB] [--demo] | ||
options: | ||
-h, --help show this help message and exit | ||
--csv CSV_PATH Path to CSV containing private data | ||
--contrib CONTRIB How many rows can an individual contribute? | ||
--demo Use generated fake CSV for a quick demo | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" | |
[project] | ||
name = "dp_wizard" | ||
authors = [{name = "Chuck McCallum", email = "[email protected]"}] | ||
readme = "README.md" | ||
readme = "README-PYPI.md" | ||
license = {file = "LICENSE"} | ||
classifiers = ["License :: OSI Approved :: MIT License"] | ||
dynamic = ["version", "description"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters