@dev-tales/nx-python
v0.2.0
Published
Nx Plugin for Python projects
Readme
Nx plugin to generate and manage Python libraries in a monorepo setup.
This plugin is heavily opinionated towards using uv as the build system for Python projects.
You can configure additional features like using flake8 for linting or pytest for testing.
Usage
Add the plugin to your Nx workspace:
nx add @dev-tales/nx-pythonGenerate a new Python library:
nx g @dev-tales/nx-python:lib libs/my-python-libNow you can run tests, lint, and build your library using the following commands:
nx test my-python-lib
nx lint my-python-lib