Skip to main content

A YAML based file package-manifest framework for defining packages.

Project description

pipeline status coverage report

DOI v0.2.0

A Python 3 framework for creating and maintaining a generalised manifest of files inspired by the Python MANIFEST.in. The framework would typically used as the basis of some kind of packaging tool to define the file needed for distribution of the package.

1 Main Features

  • YAML based file format

  • Common manifest operations:

    • include/exclude

    • global include/exclude

    • recursive include/exclude

    • prune/graft

2 Installation

The simplest way to acquire packageManifest is using pip.

pip install packageManifest

3 Getting Started

The manifest YAML file is simply a list of the include or exclude operations to comprise the formulation of files. There are six different types of operations - the same as the Python MANIFEST.in.

Each include/exclude operation can take either a files directive or a directory directive, or both, depending on the type of include/exclude being applied.

- include:
    files: [ 'LICENSE', 'README.md' ]
- exclude:
    files: [ '*.orig' ]
- recursive-include:
    directory:  'include'
    files: [ '*.h', '*.c' ]
- recursive-exclude:
    directory: 'temp/subdir'
    files: [ '*' ]
- global-include:
    files: [ 'Makefile' ]
- global-exclude:
    files: [ '*.txt', '*.tmp', 'test' ]
- prune:
    directory: 'bin'
- graft:
    directory: 'src'

The files directive contains a list of unix-glob like patterns to be applied to files. The directory directive contains a single character string of the directory.

Using the manifest file is simply a matter of importing the library and using the from_yamlFile class method to import the operations and apply them to the specified root directory of the directory tree from which to extract files.

from package-manifest import Manifest

thisManifest = Manifest.from_yamlFile( 'manifest.yml', '.' )

manifestFiles = thisManifest.apply()

manifestFiles now contains a Python set of the file names from the root directory '.' that have been filtered by the operations specified in the file manifest.yml.

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

packageManifest-1.0.0.tar.gz (27.5 kB view details)

Uploaded Source

Built Distribution

packageManifest-1.0.0-py3-none-any.whl (159.0 kB view details)

Uploaded Python 3

File details

Details for the file packageManifest-1.0.0.tar.gz.

File metadata

  • Download URL: packageManifest-1.0.0.tar.gz
  • Upload date:
  • Size: 27.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.18.4

File hashes

Hashes for packageManifest-1.0.0.tar.gz
Algorithm Hash digest
SHA256 977cdf6e57b7e2bbd752ad8587a18381d47d4e53ba0086bad0bec8bfb14cb05d
MD5 848ebe2cd8ac1995ca247c4f9513f970
BLAKE2b-256 945826913d24871eaec9220d9581412458f5b84030bec0ac66e61307b33ad8d9

See more details on using hashes here.

File details

Details for the file packageManifest-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for packageManifest-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cb51aef5dcf33bf47a7556937b0331eb96fb4c21eeb0f61d49807fe95ae7261a
MD5 e5d657b0fc700520798abb314300b6e1
BLAKE2b-256 922be6dc25104ed7a489369dc8eb46626ce94200ca2a313334b2e56869290534

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