First off, thanks for taking the time to contribute!
- 🔨 Set up Development Environment
- 💡 Adding support for new devices
- ✨ Submit your work
- 🎨 Style guidelines
- 📦️ Build a package
- 🚀 Publish a release
aiovantage uses Hatch to run scripts, manages virtual environments, create reproducible builds, and publish packages. Check out the Hatch installation guide to get started.
If you'd like to run a command in a virtual environment with development dependencies available, prefix it with hatch -e dev run
. For example,
hatch -e dev run python examples/dump_system.py hostname
If you'd prefer to manage your own python environment, you can install the development dependencies manually.
pip install -e ".[dev]"
To add a new object type to an existing controller, follow these steps:
- Create a new xsdata-style
@dataclass
model insrc/aiovantage/config_client/models/
- The new class should inherit from the appropriate subclass expected by the controller
- Your class name should match the Vantage object name if possible, otherwise use class metadata to specify the name
- Export the class in
src/aiovantage/config_client/models/__init__.py
so it can be automatically parsed - Add the object name to the
vantage_types
tuple in the appropriate controller insrc/aiovantage/config_client/controllers/
, so we know to fetch it when populating the controller - Test that the object appears in the controller, by running the
dump_system.py
example script
If you want to add support for a new class of device, you'll need to add a new controller. Create an issue to discuss the new controller before you start working on it.
Submit your improvements, fixes, and new features to one at a time, using GitHub Pull Requests.
Good pull requests remain focused in scope and avoid containing unrelated commits. If your contribution involves a significant amount of work or substantial changes to any part of the project, please open an issue to discuss it first to avoid any wasted or duplicate effort.
This project uses pre-commit to run code linting and formatting checks before commits are made.
To install pre-commit
and its associated hooks, run the following:
pip install pre-commit
pre-commit install
To run our linters on the full code base, run the following command:
pre-commit run --all-files
To build the package, first bump the version
hatch version <major|minor|patch>
Then build the package
hatch build -c
Follow these steps to publish the release on PyPi.
Commit src/aiovantage/__about__.py
to source control
git add src/aiovantage/__about__.py
git commit -m "Preparing release `hatch version`"
Tag the release
git tag `hatch version`
git push && git push --tags
Publish the release to PyPi
hatch publish
Don't forget to create a release on GitHub.