Skip to main content

Validation library and CLI tool for checking on 'pyproject.toml' files using JSON Schema

Project description

Project generated with PyScaffold Built Status ReadTheDocs Coveralls PyPI-Server

validate-pyproject

Automated checks on pyproject.toml powered by JSON Schema definitions

Description

With the approval of PEP 517 and PEP 518, the Python community shifted towards a strong focus on standardisation for packaging software, which allows more freedom when choosing tools during development and make sure packages created using different technologies can interoperate without the need for custom installation procedures.

This shift became even more clear when PEP 621 was also approved, as a standardised way of specifying project metadata and dependencies.

validate-pyproject was born in this context, with the mission of validating pyproject.toml files, and make sure they are compliant with the standards and PEPs. Behind the scenes, validate-pyproject relies on JSON Schema files, which, in turn, are also a standardised way of checking if a given data structure complies with a certain specification.

Usage

The easiest way of using validate-pyproject is via CLI. To get started, you need to install the package, which can be easily done using pipx:

$ pipx install 'validate-pyproject[all]'

Now you can use validate-pyproject as a command line tool:

# in you terminal
$ validate-pyproject --help
$ validate-pyproject path/to/your/pyproject.toml

You can also use validate-pyproject in your Python scripts or projects:

# in your python code
from validate_pyproject import api, errors

# let's assume that you have access to a `loads` function
# responsible for parsing a string representing the TOML file
# (you can check the `toml` or `tomli` projects for that)
pyproject_as_dict = loads(pyproject_toml_str)

# now we can use validate-pyproject
validator = Validator()

try:
    validator(pyproject_as_dict)
except errors.JsonSchemaValueException:
    print("Invalid Document")

To do so, don’t forget to add it to your virtual environment or specify it as a project or library dependency.

More details about validate-pyproject and its Python API can be found in our docs, which includes a description of the used JSON schemas, instructions for using it in a “vendored” way and information about extending the validation with your own plugins.

Note

This project and its sister project ini2toml were initially created in the context of PyScaffold, with the purpose of helping migrating existing projects to PEP 621-style configuration when it is made available on setuptools. For details and usage information on PyScaffold see https://pyscaffold.org/.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

validate-pyproject-0.0.1.tar.gz (72.3 kB view details)

Uploaded Source

Built Distribution

validate_pyproject-0.0.1-py3-none-any.whl (36.0 kB view details)

Uploaded Python 3

File details

Details for the file validate-pyproject-0.0.1.tar.gz.

File metadata

  • Download URL: validate-pyproject-0.0.1.tar.gz
  • Upload date:
  • Size: 72.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.0

File hashes

Hashes for validate-pyproject-0.0.1.tar.gz
Algorithm Hash digest
SHA256 a38fc010ade279bd416f627a691dec3a2b04aeb94f6f2479a471e330d16b547e
MD5 8e9023f196d6a38c5ade06ff34938dc6
BLAKE2b-256 4b875be3f4381277fdac4ceda0939cef26d845151f7b1d2352fe2cedfaed5fb2

See more details on using hashes here.

File details

Details for the file validate_pyproject-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: validate_pyproject-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 36.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.0

File hashes

Hashes for validate_pyproject-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ab2ddda7efca8dedb996e2b97df58face4317d5c1b8a77aa6e744e0867cf5281
MD5 3c1cbaa6962217168b81c7b90333e87a
BLAKE2b-256 dd549ea03b6f3e6987c845899cc2bb47820b795d196d9d4c88db234fb57761b2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page