Skip to content

Commit

Permalink
created __init__ files for qcla submodules, such that twine can find it
Browse files Browse the repository at this point in the history
  • Loading branch information
positr0nium committed Jan 25, 2024
1 parent 1afd936 commit 6dc2541
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 8 deletions.
Binary file modified documentation/build/doctrees/environment.pickle
Binary file not shown.
2 changes: 1 addition & 1 deletion documentation/build/html/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = qrisp
version = 0.4
version = 0.4.1
author = Raphael Seidel
author_email = [email protected]
description = A high-level quantum programming language
Expand Down
8 changes: 2 additions & 6 deletions src/qrisp/arithmetic/adders/qcla/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@
"""


from qrisp.arithmetic.adders.qcla.quantum_quantum.qq_carry_path import *
from qrisp.arithmetic.adders.qcla.quantum_quantum.qq_sum_path import *
from qrisp.arithmetic.adders.qcla.quantum_quantum.qq_qcla_adder import *
from qrisp.arithmetic.adders.qcla.quantum_quantum import *
from qrisp.arithmetic.adders.qcla.classical_quantum import *

from qrisp.arithmetic.adders.qcla.classical_quantum.cq_carry_path import *
from qrisp.arithmetic.adders.qcla.classical_quantum.cq_sum_path import *
from qrisp.arithmetic.adders.qcla.classical_quantum.cq_qcla_adder import *
from qrisp.arithmetic.adders.qcla.wrapper_function import qcla
22 changes: 22 additions & 0 deletions src/qrisp/arithmetic/adders/qcla/classical_quantum/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"""
\********************************************************************************
* Copyright (c) 2023 the Qrisp authors
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the Eclipse
* Public License, v. 2.0 are satisfied: GNU General Public License, version 2
* with the GNU Classpath Exception which is
* available at https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
********************************************************************************/
"""

from qrisp.arithmetic.adders.qcla.classical_quantum.cq_carry_path import *
from qrisp.arithmetic.adders.qcla.classical_quantum.cq_sum_path import *
from qrisp.arithmetic.adders.qcla.classical_quantum.cq_qcla_adder import *

22 changes: 22 additions & 0 deletions src/qrisp/arithmetic/adders/qcla/quantum_quantum/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"""
\********************************************************************************
* Copyright (c) 2023 the Qrisp authors
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the Eclipse
* Public License, v. 2.0 are satisfied: GNU General Public License, version 2
* with the GNU Classpath Exception which is
* available at https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
********************************************************************************/
"""


from qrisp.arithmetic.adders.qcla.quantum_quantum.qq_carry_path import *
from qrisp.arithmetic.adders.qcla.quantum_quantum.qq_sum_path import *
from qrisp.arithmetic.adders.qcla.quantum_quantum.qq_qcla_adder import *

0 comments on commit 6dc2541

Please sign in to comment.