-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing naming convention and its use in GaussianSVT
- Loading branch information
Showing
3 changed files
with
4 additions
and
4 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
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
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 |
---|---|---|
|
@@ -18,14 +18,14 @@ def _parse_requirements(path): | |
|
||
setup( | ||
name='autodp', | ||
version='0.2.1b', | ||
version='0.2.3', | ||
description='Automating Differential Privacy Computation', | ||
license="Apache", | ||
long_description="The package helps researchers and developers to correctly use advanced methods in differential privacy and obtain provable DP guarantees. The core of the package is an analytical moments accountant that keeps track of Renyi Differential Privacy in analytical forms.", | ||
author='Yu-Xiang Wang', | ||
author_email='[email protected]', | ||
url='https://github.com/yuxiangw/autodp', | ||
download_url = 'https://github.com/yuxiangw/autodp/archive/refs/tags/v0.2.1b.tar.gz', | ||
download_url = 'https://github.com/yuxiangw/autodp/archive/refs/tags/v0.2.3.tar.gz', | ||
keywords = ['Differential Privacy','Moments Accountant','Renyi Differential Privacy'], | ||
packages=['autodp'], #same as name | ||
install_requires=[_parse_requirements('requirements.txt')], #external packages as dependencies | ||
|