├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── pyproject.toml ├── tests ├── __init__.py └── typodoo_addons │ └── demo1 │ ├── __init__.py │ ├── __manifest__.py │ ├── models │ ├── __init__.py │ ├── res_partner.py │ └── thing.py │ ├── pyproject.toml │ └── tests │ ├── __init__.py │ └── test_thing.py ├── typodoo.py └── typodoo_activate.pth /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/typodoo_addons/demo1/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /tests/typodoo_addons/demo1/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/tests/typodoo_addons/demo1/__manifest__.py -------------------------------------------------------------------------------- /tests/typodoo_addons/demo1/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/tests/typodoo_addons/demo1/models/__init__.py -------------------------------------------------------------------------------- /tests/typodoo_addons/demo1/models/res_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/tests/typodoo_addons/demo1/models/res_partner.py -------------------------------------------------------------------------------- /tests/typodoo_addons/demo1/models/thing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/tests/typodoo_addons/demo1/models/thing.py -------------------------------------------------------------------------------- /tests/typodoo_addons/demo1/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/tests/typodoo_addons/demo1/pyproject.toml -------------------------------------------------------------------------------- /tests/typodoo_addons/demo1/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_thing -------------------------------------------------------------------------------- /tests/typodoo_addons/demo1/tests/test_thing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/tests/typodoo_addons/demo1/tests/test_thing.py -------------------------------------------------------------------------------- /typodoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbidoul/typodoo/HEAD/typodoo.py -------------------------------------------------------------------------------- /typodoo_activate.pth: -------------------------------------------------------------------------------- 1 | import typodoo 2 | --------------------------------------------------------------------------------