Skip to content

Commit

Permalink
[QNEBE-341] Getting ready for pypi (#25)
Browse files Browse the repository at this point in the history
* [QNEBE-341] Getting ready for pypi
  • Loading branch information
QFer authored Nov 16, 2021
1 parent fad8129 commit cdbb221
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,15 @@ def get_long_description():
long_description=get_long_description(),
long_description_content_type="text/markdown",
version=get_version_number("adk"),
author="QuantumNetworkExplorer",
author="QuTech-Delft",
author_email="[email protected]",
url="https://github.com/QuTech-Delft/qne-adk",
python_requires=">=3.7",
package_dir={"": "src"},
package_data={"": ["networks/*.json",
"schema/applications/*.json",
"schema/experiments/*.json",
"schema/networks/*.json"]},
entry_points={
"console_scripts": [
"qne=adk.command_list:app",
Expand Down
2 changes: 1 addition & 1 deletion src/adk/api/local_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ def get_results(self, path: Path) -> ResultType:
instruction_converter=FullyConnectedNetworkGenerator()
)

return cast(ResultType, output_converter.convert(round_number=1))
return output_converter.convert(round_number=1)

def validate_experiment(self, path: Path) -> ErrorDictType:
"""
Expand Down
Empty file added src/adk/parsers/__init__.py
Empty file.

0 comments on commit cdbb221

Please sign in to comment.