├── .github └── workflows │ ├── publish.yaml │ └── tests.yaml ├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── src └── pysam │ ├── __init__.py │ ├── __version__.py │ └── client.py └── tests └── __init__.py /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpleger/pysam/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpleger/pysam/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpleger/pysam/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpleger/pysam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpleger/pysam/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpleger/pysam/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pysam/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /src/pysam/__version__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | VERSION = "0.0.1" 4 | -------------------------------------------------------------------------------- /src/pysam/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpleger/pysam/HEAD/src/pysam/client.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------