Metadata-Version: 2.1
Name: fme-packager
Version: 1.6.0
Summary: Tool for creating FME Packages.
Home-page: https://github.com/safesoftware/fme-packager
Author: Safe Software Inc.
License: BSD
Keywords: FME fmeobjects
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click >=8.1.6
Requires-Dist: cookiecutter >=2.2.3
Requires-Dist: jsonschema >=4.17.3
Requires-Dist: pypng >=0.20220715.0
Requires-Dist: ruamel.yaml >=0.17.32
Requires-Dist: xmltodict >=0.13.0
Requires-Dist: packaging >=23.1
Requires-Dist: build >=0.10.0
Requires-Dist: wheel >=0.40.0
Requires-Dist: setuptools >=68.0.0
Requires-Dist: markdown >=3.4.3
Provides-Extra: dev
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: tox >=4.6.4 ; extra == 'dev'
Requires-Dist: urllib3 <2 ; extra == 'dev'

# fme-packager: FME Package Creator

`fme-packager` is a Python command-line tool for validating and creating FME Packages.
Give it the path to an FME Package directory, and it'll do some quick checks
and build an `.fpkg` file out of it.

The validations done by `fme-packager` will catch common mistakes in package development,
but is still very basic. The FME Packages it creates will be
validly formed according to the FME Packages Specification,
but whether the installed components function correctly within FME is not in its scope.


## Install

Download the latest whl distribution from the releases page. Then install it:

```
$ pip install [fme-packager].whl
```

Once installed, the `fme-packager` command is available on your system.
`fme-packager --help` shows an overview of commands.


## What it does

* Validate package.yml against the FME Packages Specification.
* Verifies that components listed in package.yml are present.
* Checks that transformer and format names are valid and well-formed.
* Verifies that the transformer version in the package.yml is
  included in the FMX.
* Requires that Custom Transformers be Linked Always, declare Python 3 support,
  and authored with a sufficiently recent version of FME Workbench.
* Excludes components that are present in directories,
  but not listed in package.yml.
* Cleans and rebuilds wheels for Python packages that are subdirectories of `python/`.
* Copies wheels from `python/*/dist` into `python/`.
* Enforces required package icon dimensions.

These steps are done while copying files into a temporary build directory,
so existing files are not modified.


## Get started with a template

`fme-packager init [template name]` helps you get started with developing FME Packages by
using [Cookiecutter](https://cookiecutter.readthedocs.io/) templates.

Available templates:

* `transformer`: [Transformer template for FME Packages](https://github.com/safesoftware/fpkg-transformer-template)

_These templates are not currently bundled with fme-packager._


## Make an fpkg distribution

Call `fme-packager pack` with the path to your package directory (it contains package.yml):

```
$ fme-packager pack my-package
```

If everything went well, the fpkg will be in `my-package/dist/`.
