├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── python-build-test.yml │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── doc ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── requirements.txt ├── setup.cfg ├── setup.py ├── smbus2 ├── __init__.py ├── py.typed ├── smbus2.py └── smbus2.pyi └── tests ├── test_datatypes.py └── test_smbus2.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/python-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/.github/workflows/python-build-test.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/setup.py -------------------------------------------------------------------------------- /smbus2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/smbus2/__init__.py -------------------------------------------------------------------------------- /smbus2/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smbus2/smbus2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/smbus2/smbus2.py -------------------------------------------------------------------------------- /smbus2/smbus2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/smbus2/smbus2.pyi -------------------------------------------------------------------------------- /tests/test_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/tests/test_datatypes.py -------------------------------------------------------------------------------- /tests/test_smbus2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kplindegaard/smbus2/HEAD/tests/test_smbus2.py --------------------------------------------------------------------------------