├── .github └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ci.sh ├── conftest.py ├── freesms ├── __init__.py └── py.typed ├── poetry.lock ├── pyproject.toml └── tests ├── test_sms.py └── test_version.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/README.md -------------------------------------------------------------------------------- /ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/ci.sh -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freesms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/freesms/__init__.py -------------------------------------------------------------------------------- /freesms/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/tests/test_sms.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfontaine/freesms/HEAD/tests/test_version.py --------------------------------------------------------------------------------