We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5793e9 commit c2a16c8Copy full SHA for c2a16c8
.travis.yml
@@ -0,0 +1,12 @@
1
+language: python
2
+python:
3
+ - "2.7"
4
+ - "3.3"
5
+ - "3.5"
6
+ - "3.7-dev" # 3.7 development branch
7
+# command to install dependencies
8
+install:
9
+ - pip install -r requirements.txt
10
+# command to run tests
11
+script:
12
+ - python test.py
QuSim.py
@@ -1,7 +1,6 @@
from functools import reduce
import numpy as np
-
class gates:
# Store complex number i here for easy access
i = np.complex(0, 1)
requirements.txt
@@ -0,0 +1,3 @@
+# Library dependencies for the python code. You need to install these with
+# `pip install -r requirements.txt` before you can run this.
+numpy
0 commit comments