├── .bumpversion.cfg ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── meican ├── __init__.py ├── cmdline.py ├── commands.py ├── exceptions.py ├── models.py ├── settings.py └── tools.py ├── pyproject.toml ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_models.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/README.md -------------------------------------------------------------------------------- /meican/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/meican/__init__.py -------------------------------------------------------------------------------- /meican/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/meican/cmdline.py -------------------------------------------------------------------------------- /meican/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/meican/commands.py -------------------------------------------------------------------------------- /meican/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/meican/exceptions.py -------------------------------------------------------------------------------- /meican/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/meican/models.py -------------------------------------------------------------------------------- /meican/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/meican/settings.py -------------------------------------------------------------------------------- /meican/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/meican/tools.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 120 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LKI/meican/HEAD/tests/test_models.py --------------------------------------------------------------------------------