├── LICENSE.txt ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── moduledoc.rst ├── pycrafter4500 ├── __init__.py └── pycrafter4500.py ├── requirements.txt └── setup.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SivyerLab/pyCrafter4500/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SivyerLab/pyCrafter4500/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SivyerLab/pyCrafter4500/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SivyerLab/pyCrafter4500/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SivyerLab/pyCrafter4500/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SivyerLab/pyCrafter4500/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/moduledoc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SivyerLab/pyCrafter4500/HEAD/docs/moduledoc.rst -------------------------------------------------------------------------------- /pycrafter4500/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SivyerLab/pyCrafter4500/HEAD/pycrafter4500/__init__.py -------------------------------------------------------------------------------- /pycrafter4500/pycrafter4500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SivyerLab/pyCrafter4500/HEAD/pycrafter4500/pycrafter4500.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyusb -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SivyerLab/pyCrafter4500/HEAD/setup.py --------------------------------------------------------------------------------