Browse code

moved to src directory structure

This avoids problems with testing against the wrong package version

Joseph Weston authored on 30/11/2019 18:31:57
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,5 +0,0 @@
1
-"""A simple package for simulating quantum circuits."""
2
-
3
-__version__ = "0.1.0.dev0"
4
-
5
-from qsim import state, gate, measurement
Browse code

Correct version string

Joseph Weston authored on 12/11/2019 11:35:58
Showing 1 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 """A simple package for simulating quantum circuits."""
2 2
 
3
-__version__ = "0.1.0.dev"
3
+__version__ = "0.1.0.dev0"
4 4
 
5 5
 from qsim import state, gate, measurement
Browse code

Add bare package and pyproject.toml

Joseph Weston authored on 09/11/2019 00:46:10
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,5 @@
1
+"""A simple package for simulating quantum circuits."""
2
+
3
+__version__ = "0.1.0.dev"
4
+
5
+from qsim import state, gate, measurement