https://github.com/davidvujic/python-polylith-example-uv
Example Polylith setup for Python and uv
https://github.com/davidvujic/python-polylith-example-uv
Last synced: 4 months ago
JSON representation
Example Polylith setup for Python and uv
- Host: GitHub
- URL: https://github.com/davidvujic/python-polylith-example-uv
- Owner: DavidVujic
- License: mit
- Created: 2024-08-18T12:44:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-18T16:50:53.000Z (5 months ago)
- Last Synced: 2025-08-18T18:33:38.505Z (5 months ago)
- Language: Python
- Size: 479 KB
- Stars: 32
- Watchers: 2
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Polylith Example
This is a repository with an example `Python` setup of the Polylith Architecture using `uv`.
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)