quantum-simulator 0.1.2__py3-none-any.whl → 0.1.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- quantum_simulator/__init__.py +1 -1
- {quantum_simulator-0.1.2.dist-info → quantum_simulator-0.1.4.dist-info}/METADATA +1 -84
- quantum_simulator-0.1.4.dist-info/RECORD +9 -0
- quantum_simulator-0.1.2.dist-info/RECORD +0 -9
- {quantum_simulator-0.1.2.dist-info → quantum_simulator-0.1.4.dist-info}/WHEEL +0 -0
- {quantum_simulator-0.1.2.dist-info → quantum_simulator-0.1.4.dist-info}/entry_points.txt +0 -0
- {quantum_simulator-0.1.2.dist-info → quantum_simulator-0.1.4.dist-info}/licenses/LICENSE +0 -0
quantum_simulator/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quantum-simulator
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: A Python library for simulating quantum computers and quantum algorithms
|
|
5
5
|
Project-URL: Homepage, https://github.com/beefy/quantum-simulator
|
|
6
6
|
Project-URL: Documentation, https://beefy.github.io/quantum-simulator/
|
|
@@ -64,8 +64,6 @@ A Python library for simulating quantum computers and quantum algorithms. This p
|
|
|
64
64
|
- 🚪 **Quantum Gates**: Implementation of common single and multi-qubit gates (X, Y, Z, H, CNOT)
|
|
65
65
|
- 🔗 **Quantum Circuits**: Build and execute complex quantum circuits
|
|
66
66
|
- 📊 **Measurement**: Simulate quantum measurements with proper state collapse
|
|
67
|
-
- 🎯 **Easy to Use**: Clean, intuitive API for quantum programming
|
|
68
|
-
- 📚 **Well Documented**: Comprehensive documentation and examples
|
|
69
67
|
|
|
70
68
|
## Quick Start
|
|
71
69
|
|
|
@@ -104,8 +102,6 @@ Full documentation is available at **[beefy.github.io/quantum-simulator](https:/
|
|
|
104
102
|
|
|
105
103
|
- [Installation Guide](https://beefy.github.io/quantum-simulator/getting-started/installation/)
|
|
106
104
|
- [Quick Start](https://beefy.github.io/quantum-simulator/getting-started/quickstart/)
|
|
107
|
-
- [API Reference](https://beefy.github.io/quantum-simulator/reference/)
|
|
108
|
-
- [Examples](https://beefy.github.io/quantum-simulator/getting-started/examples/)
|
|
109
105
|
|
|
110
106
|
## Development
|
|
111
107
|
|
|
@@ -137,82 +133,3 @@ Full documentation is available at **[beefy.github.io/quantum-simulator](https:/
|
|
|
137
133
|
```bash
|
|
138
134
|
mkdocs serve
|
|
139
135
|
```
|
|
140
|
-
|
|
141
|
-
## Publishing
|
|
142
|
-
|
|
143
|
-
### Publishing to PyPI
|
|
144
|
-
|
|
145
|
-
This project uses automated publishing via GitHub Actions. To publish a new version:
|
|
146
|
-
|
|
147
|
-
#### 1. Prepare the Release
|
|
148
|
-
|
|
149
|
-
1. **Update version** in `src/quantum_simulator/__init__.py`:
|
|
150
|
-
```python
|
|
151
|
-
__version__ = "0.2.0" # Increment version number
|
|
152
|
-
```
|
|
153
|
-
|
|
154
|
-
2. **Update CHANGELOG.md** with release notes
|
|
155
|
-
|
|
156
|
-
3. **Commit changes**:
|
|
157
|
-
```bash
|
|
158
|
-
git add .
|
|
159
|
-
git commit -m "Bump version to 0.2.0"
|
|
160
|
-
git push
|
|
161
|
-
```
|
|
162
|
-
|
|
163
|
-
#### 2. Create a Release
|
|
164
|
-
|
|
165
|
-
1. **Create and push a tag**:
|
|
166
|
-
```bash
|
|
167
|
-
git tag v0.2.0
|
|
168
|
-
git push origin v0.2.0
|
|
169
|
-
```
|
|
170
|
-
|
|
171
|
-
2. **Create a GitHub Release**:
|
|
172
|
-
- Go to [GitHub Releases](https://github.com/beefy/quantum-simulator/releases)
|
|
173
|
-
- Click "Create a new release"
|
|
174
|
-
- Choose the tag you just created
|
|
175
|
-
- Add release notes
|
|
176
|
-
- Click "Publish release"
|
|
177
|
-
|
|
178
|
-
3. **Automated Publishing**:
|
|
179
|
-
- GitHub Actions will automatically build and publish to PyPI
|
|
180
|
-
- Check the [Actions tab](https://github.com/beefy/quantum-simulator/actions) for progress
|
|
181
|
-
|
|
182
|
-
#### 3. Manual Publishing (if needed)
|
|
183
|
-
|
|
184
|
-
If automated publishing fails, you can publish manually:
|
|
185
|
-
|
|
186
|
-
```bash
|
|
187
|
-
# Install build tools
|
|
188
|
-
pip install build twine
|
|
189
|
-
|
|
190
|
-
# Build the package
|
|
191
|
-
python -m build
|
|
192
|
-
|
|
193
|
-
# Upload to PyPI (requires PyPI API token)
|
|
194
|
-
twine upload dist/*
|
|
195
|
-
```
|
|
196
|
-
|
|
197
|
-
### Publishing Documentation
|
|
198
|
-
|
|
199
|
-
Documentation is automatically deployed to GitHub Pages on every push to the `main` branch.
|
|
200
|
-
|
|
201
|
-
#### Manual Documentation Deployment
|
|
202
|
-
|
|
203
|
-
```bash
|
|
204
|
-
# Install documentation dependencies
|
|
205
|
-
pip install -e .[docs]
|
|
206
|
-
|
|
207
|
-
# Build and deploy to GitHub Pages
|
|
208
|
-
mkdocs gh-deploy
|
|
209
|
-
```
|
|
210
|
-
|
|
211
|
-
#### Local Documentation Development
|
|
212
|
-
|
|
213
|
-
```bash
|
|
214
|
-
# Serve documentation locally with auto-reload
|
|
215
|
-
mkdocs serve
|
|
216
|
-
|
|
217
|
-
# Open http://localhost:8000 in your browser
|
|
218
|
-
```
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
quantum_simulator/__init__.py,sha256=y_RENFZVz0BXtDsOhohL13XVCw0FdSKNETNspKD7JXc,378
|
|
2
|
+
quantum_simulator/circuits.py,sha256=GEuH9qfOH0yYiC-T_3hADjpo55rwX84JT4oMtDrEVWE,1492
|
|
3
|
+
quantum_simulator/gates.py,sha256=TP3WE09fyd6B-YSpJ0cOV5PFQ0FPuZY3Cc0HJUXNjLA,3599
|
|
4
|
+
quantum_simulator/simulator.py,sha256=kI_UxbQZr9NG_ZfGR3oZk9D2DM4qHLp7S6OYSsig-Cc,2018
|
|
5
|
+
quantum_simulator-0.1.4.dist-info/METADATA,sha256=tCIRRfcpkMzjej0rOXIscsPm4zjc3gUWa5WBB4muHZk,5002
|
|
6
|
+
quantum_simulator-0.1.4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
7
|
+
quantum_simulator-0.1.4.dist-info/entry_points.txt,sha256=ASQZ3hc87SvvB-KxgD3ZAxh09k4HWzJX0iciD1D5st4,59
|
|
8
|
+
quantum_simulator-0.1.4.dist-info/licenses/LICENSE,sha256=awOCsWJ58m_2kBQwBUGWejVqZm6wuRtCL2hi9rfa0X4,1211
|
|
9
|
+
quantum_simulator-0.1.4.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
quantum_simulator/__init__.py,sha256=FoEw_1BFNSoVnGICjGQKbeeDiMjx1zWmA2oo8TF-h-c,378
|
|
2
|
-
quantum_simulator/circuits.py,sha256=GEuH9qfOH0yYiC-T_3hADjpo55rwX84JT4oMtDrEVWE,1492
|
|
3
|
-
quantum_simulator/gates.py,sha256=TP3WE09fyd6B-YSpJ0cOV5PFQ0FPuZY3Cc0HJUXNjLA,3599
|
|
4
|
-
quantum_simulator/simulator.py,sha256=kI_UxbQZr9NG_ZfGR3oZk9D2DM4qHLp7S6OYSsig-Cc,2018
|
|
5
|
-
quantum_simulator-0.1.2.dist-info/METADATA,sha256=HztRRcoHD-yk8OsS4AAUMAAPKmtRwOjRgZV1knd2Bzc,6986
|
|
6
|
-
quantum_simulator-0.1.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
7
|
-
quantum_simulator-0.1.2.dist-info/entry_points.txt,sha256=ASQZ3hc87SvvB-KxgD3ZAxh09k4HWzJX0iciD1D5st4,59
|
|
8
|
-
quantum_simulator-0.1.2.dist-info/licenses/LICENSE,sha256=awOCsWJ58m_2kBQwBUGWejVqZm6wuRtCL2hi9rfa0X4,1211
|
|
9
|
-
quantum_simulator-0.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|