-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·45 lines (43 loc) · 1.53 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Dec 25 12:04:26 2019
@author: jax
"""
from setuptools import setup
setup(
name="qisjob",
version="4.1.3-dev",
description="Run Qiskit jobs from command line",
url="https://github.com/jwoehr/qisjob",
author="Jack Woehr",
author_email="[email protected]",
license="Apache 2.0",
packages=["qisjob"],
data_files=[
(
"share/qisjob/qasm_examples",
[
"share/qasm_examples/entangle.qasm",
"share/qasm_examples/ghzstate3q.qasm",
"share/qasm_examples/ghzxxx.qasm",
"share/qasm_examples/ghzxyx.qasm",
"share/qasm_examples/ghzxyy.qasm",
"share/qasm_examples/ghzyxy.qasm",
"share/qasm_examples/ghzyyx.qasm",
"share/qasm_examples/mermin_inequality_a.qasm",
"share/qasm_examples/mermin_inequality_b.qasm",
"share/qasm_examples/mermin_inequality_c.qasm",
"share/qasm_examples/mermin_inequality_d.qasm",
"share/qasm_examples/multimeasure.qasm",
"share/qasm_examples/onebit.qasm",
"share/qasm_examples/yiqing.qasm",
"share/qasm_examples/yiqing_simple.qasm",
],
),
("share/qisjob/qc_examples", ["share/qc_examples/google_quantum_supremacy.py"]),
],
scripts=["scripts/qisjob"],
zip_safe=False,
modules=["qisjob/qisjob", "qisjob/qisjobex", "qisjob/qisjobaer"],
)