forked from qiskit-community/QuantumGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 755 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been changed from the originals.
#
# Copyright IBM Quantum 2020
# Copyright Moth Quantum 2025-2026
from setuptools import setup, find_packages
setup(name='quantumgraph',
install_requires=['qiskit', 'scipy', 'qiskit-aer', 'pairwise-tomography @ git+https://github.com/moth-quantum/pairwise-tomography.git'],
version='0.0.1',
packages=['quantumgraph']
)