An open API service indexing awesome lists of open source software.

https://github.com/davidvujic/python-polylith-example-hatch

Example Polylith setup for Python and Hatch
https://github.com/davidvujic/python-polylith-example-hatch

Last synced: 5 months ago
JSON representation

Example Polylith setup for Python and Hatch

Awesome Lists containing this project

README

          

# Python Polylith Example

This is a repository with an example `Python` setup of the Polylith Architecture using `hatch`.
Here you will find examples of code being shared between different kind of projects, and the developer tooling setup.

## Developer experience

### Mypy
Have a look at the `mypy.ini` configuration file, to make `Mypy` work really well with this type of architecture.

``` ini
[mypy]
mypy_path = components, bases
namespace_packages = True
explicit_package_bases = True
```

Have a look at this repository for more information and documentation:
[Python tools for the Polylith Architecture](https://github.com/DavidVujic/python-polylith)