Skip to main content

Interface Python with pkg-config

Project description

https://travis-ci.org/matze/pkgconfig.png?branch=master

pkgconfig is a Python module to interface with the pkg-config command line tool and supports Python 2.6+.

It can be used to

  • find all pkg-config packages

    >>> packages = pkgconfig.list_all()
  • check if a package exists

    >>> pkgconfig.exists('glib-2.0')
    True
  • check if a package meets certain version requirements

    >>> pkgconfig.installed('glib-2.0', '< 2.26')
    False
  • query CFLAGS and LDFLAGS

    >>> pkgconfig.cflags('glib-2.0')
    '-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include'
    
    >>> pkgconfig.libs('glib-2.0')
    '-lglib-2.0'
  • parse the output to build extensions with setup.py

    >>> d = pkgconfig.parse('glib-2.0 gtk+-2.0')
    >>> d['libraries']
    [u'gtk+-2.0', u'glib-2.0']

    The pkgconfig.parse function return a dictonary of list. The lists returned are an accurate representations of the equivalent pkg-config call, both in content and order.

If pkg-config is not on the path, raises EnvironmentError.

The pkgconfig module is licensed under the MIT license.

Changelog

Version 1.2.1

Bug fix release released on December 1st 2016.

  • Include the data folder in the distribution in order to run tests

Version 1.2.0

Released on November 30th 2016.

  • Potential break: switch from result set to list

  • Expose –list-all query

  • Added support for PKG_CONFIG environment variable

Version 1.1.0

Released on November 6th 2013.

  • Multiple packages can now be parsed with a single call to .parse.

Version 1.0.0

First release on September 8th 2013.

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

pkgconfig-1.2.1.tar.gz (5.3 kB view details)

Uploaded Source

File details

Details for the file pkgconfig-1.2.1.tar.gz.

File metadata

  • Download URL: pkgconfig-1.2.1.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pkgconfig-1.2.1.tar.gz
Algorithm Hash digest
SHA256 27ffec4d496fbe3ece036ce8e46435249d583d90216b75b54695f803df259859
MD5 5eda90e67929f5fab31d1a9cfc923d3f
BLAKE2b-256 1f904ce89b250a9fdf87a73d109a496cbe40db6032ee90550533a060e378d60d

See more details on using hashes here.

Supported by

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