├── .gitattributes ├── .github └── workflows │ ├── publish-on-release.yml │ └── publish-to-test-pypi.yml ├── .gitignore ├── LICENSE ├── Lab_Frequency_Sweep.ipynb ├── README.md ├── RELEASE.md ├── Tutorial_PulseDesigner.ipynb ├── Tutorial_ScheduleDesigner.ipynb ├── images ├── labFrequencySweep_01.png ├── pulseDesigner_01.png ├── pulseDesigner_02.png ├── scheduleDesigner_01.png ├── scheduleDesigner_02.png ├── scheduleDesigner_03.png └── scheduleDesigner_04.png ├── pulsemaker ├── PulseDesigner.py ├── ScheduleDesigner.py ├── __init__.py └── _version.py ├── pyproject.toml ├── setup.cfg └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish-on-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/.github/workflows/publish-on-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-test-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/.github/workflows/publish-to-test-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/LICENSE -------------------------------------------------------------------------------- /Lab_Frequency_Sweep.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/Lab_Frequency_Sweep.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/RELEASE.md -------------------------------------------------------------------------------- /Tutorial_PulseDesigner.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/Tutorial_PulseDesigner.ipynb -------------------------------------------------------------------------------- /Tutorial_ScheduleDesigner.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/Tutorial_ScheduleDesigner.ipynb -------------------------------------------------------------------------------- /images/labFrequencySweep_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/images/labFrequencySweep_01.png -------------------------------------------------------------------------------- /images/pulseDesigner_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/images/pulseDesigner_01.png -------------------------------------------------------------------------------- /images/pulseDesigner_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/images/pulseDesigner_02.png -------------------------------------------------------------------------------- /images/scheduleDesigner_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/images/scheduleDesigner_01.png -------------------------------------------------------------------------------- /images/scheduleDesigner_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/images/scheduleDesigner_02.png -------------------------------------------------------------------------------- /images/scheduleDesigner_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/images/scheduleDesigner_03.png -------------------------------------------------------------------------------- /images/scheduleDesigner_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/images/scheduleDesigner_04.png -------------------------------------------------------------------------------- /pulsemaker/PulseDesigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/pulsemaker/PulseDesigner.py -------------------------------------------------------------------------------- /pulsemaker/ScheduleDesigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/pulsemaker/ScheduleDesigner.py -------------------------------------------------------------------------------- /pulsemaker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/pulsemaker/__init__.py -------------------------------------------------------------------------------- /pulsemaker/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/pulsemaker/_version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adgt/pulsemaker/HEAD/setup.py --------------------------------------------------------------------------------