diff --git a/setup.py b/setup.py index ca9e073..aacda04 100644 --- a/setup.py +++ b/setup.py @@ -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="support@quantum-network.com", + 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", diff --git a/src/adk/api/local_api.py b/src/adk/api/local_api.py index ccaba57..4ded31b 100644 --- a/src/adk/api/local_api.py +++ b/src/adk/api/local_api.py @@ -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: """ diff --git a/src/adk/parsers/__init__.py b/src/adk/parsers/__init__.py new file mode 100644 index 0000000..e69de29