Git Product home page Git Product logo

svada's Introduction

Svada - SVD Parsing for Python

svada is a general-purpose parser for quickly and efficiently parsing CMSIS SVD files into concise objects for use in various applications.

Contents:

Building and installing from source

Make sure that your environment is using the latest build package from PyPA, then invoke it to build the package from the setup.cfg file:

python3 -m pip install --user -U build
python3 -m build

This will generate both tar.gz and .whl artifacts for the current version, either of which can be used for installing from the command line:

python3 -m pip install dist/svada-X.Y.Z-py3-none-any.whl

Contributing

Code style

This project uses black and pylint for aligning source code with PEP standards and keeping to a single, common format across the codebase. These can be installed via:

python3 -m pip install -r scripts/requirements-test.txt

To more easily facilitate this, the repository contains the scripts/pre-commit hook script that can be placed in your local .git/hooks folder. This script will block committed code that fails formatting and linting checks by these programs, ensuring that new contributions align to the policies before being pushed and caught by CI.

The hook script has options that can be added to .gitconfig to further customize the behavior. For example, a specific .pylintrc file can be used for linting by setting this option locally:

# ~/.gitconfig
[hooks]
	pylintrc=/home/username/.pylintrc

It is required to do this for all developers and contributors of this project to keep source code aligned across files.

Virtual environments

During development, it is strongly recommended to have this package installed in a separate virtual environment for easily testing local changes without continuous installation and uninstallation. You can find the official documentation about virtual environments in Python and how to use them on their official venv tutorial page.

To use the tool in a virtual environment, do the following:

  1. Create and activate a virtual environment:
python3 -m venv my_venv

Alternatively, Python3's virtualenv package can also create the same virtual environments, and offers some extra features from the built-in venv.

  1. Create a dynamic installation of the package, running the setup script with the develop argument from the repository root:
python3 setup.py develop

This installs the package using always the latest changes of its source files, including when invoked through its command-line executables. setup.py automatically grabs build and metadata information from setup.cfg and pyproject.toml.

To uninstall the dynamic package version installed with develop, re-run the command with the --uninstall or -u option.

svada's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.