-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac70d66
commit 0dfb5aa
Showing
2 changed files
with
6 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,7 @@ | |
# copyright notice, and modified files need to carry a notice indicating | ||
# that they have been altered from the originals. | ||
|
||
"""mthree | ||
Matrix-free measurement mitigation | ||
"""M3: Matrix-free measurement mitigation | ||
""" | ||
|
||
import os | ||
|
@@ -47,7 +45,9 @@ | |
} | ||
DOCLINES = __doc__.split('\n') | ||
DESCRIPTION = DOCLINES[0] | ||
LONG_DESCRIPTION = "\n".join(DOCLINES[2:]) | ||
this_dir = os.path.abspath(os.path.dirname(__file__)) | ||
with open(os.path.join(this_dir, 'README.md'), encoding='utf-8') as readme: | ||
LONG_DESCRIPTION = readme.read() | ||
|
||
CYTHON_EXTS = ['compute', 'converters', 'hamming', 'matrix', 'probability', 'matvec'] + \ | ||
['expval', 'column_testing', 'converters_testing'] | ||
|
@@ -195,6 +195,7 @@ def run(self): | |
packages=PACKAGES, | ||
description=DESCRIPTION, | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type='text/markdown', | ||
url="", | ||
author="Paul Nation", | ||
author_email="[email protected]", | ||
|