Skip to main content

Python dependency specifications supporting logical operations

Project description

Dep-Logic

PyPI - Version Python Version from PEP 621 TOML GitHub License

Python dependency specifications supporting logical operations

Installation

pip install dep-logic

This library requires Python 3.8 or later.

Currently, it contains two sub-modules:

  • dep_logic.specifier - a module for parsing and calculating PEP 440 version specifiers.
  • dep_logic.markers - a module for parsing and calculating PEP 508 environment markers.

What does it do?

This library allows logic operations on version specifiers and environment markers.

For example:

>>> from dep_logic.specifier import parse_version_specifier
>>>
>>> a = parse_version_specifier(">=1.0.0")
>>> b = parse_version_specifier("<2.0.0")
>>> print(a & b)
>=1.0.0,<2.0.0
>>> a = parse_version_specifier(">=1.0.0,<2.0.0")
>>> b = parse_version_specifier(">1.5")
>>> print(a | b)
>=1.0.0

For markers:

>>> from dep_logic.markers import parse_marker
>>> m1 = parse_marker("python_version < '3.8'")
>>> m2 = parse_marker("python_version >= '3.6'")
>>> print(m1 & m2)
python_version < "3.8" and python_version >= "3.6"

About the project

This project is based on @sdispater's poetry-core code, but it includes additional packages and a lark parser, which increases the package size and makes it less reusable.

Furthermore, poetry-core does not always comply with PEP-508. As a result, this project aims to offer a lightweight utility for dependency specification logic using PyPA's packaging.

Caveats

=== operator is not supported for logic operations.

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

dep_logic-0.0.3.tar.gz (27.1 kB view details)

Uploaded Source

Built Distribution

dep_logic-0.0.3-py3-none-any.whl (26.1 kB view details)

Uploaded Python 3

File details

Details for the file dep_logic-0.0.3.tar.gz.

File metadata

  • Download URL: dep_logic-0.0.3.tar.gz
  • Upload date:
  • Size: 27.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for dep_logic-0.0.3.tar.gz
Algorithm Hash digest
SHA256 6b9da937652d8ecf63e916c254d8ec4e8e27f8bcf0f8df205c561f5b3d740e79
MD5 d3c20f3db9bff59fffb9f99406fd6ffa
BLAKE2b-256 d04e9fe2a7eb8090bb6d30184d30ab5872996948857ce5d0b549fb5c8bb4f5e4

See more details on using hashes here.

Provenance

File details

Details for the file dep_logic-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: dep_logic-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 26.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for dep_logic-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7ac0055dbe980846631a06c8a895b9ace69e613c6c29e11c4976ccf29998fed3
MD5 3834b2cf1359391d93f0f55c3ddb405a
BLAKE2b-256 6e0169434ff71d1b416b8b6035fc6dfd2f64d5352e59c975a5d2834bfeec0c5a

See more details on using hashes here.

Provenance

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