Metadata-Version: 2.4
Name: pyfxtran
Version: 0.1.3
Summary: A light wrapper around fxtran
Author-email: Sébastien Riette <sebastien.riette@meteo.fr>
License-Expression: CECILL-C
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# pyfxtran

This package is a lightweight wrapper around fxtran (https://github.com/pmarguinaud/fxtran).

The goal is to produce a python package that can be distributed via pypi.
A better way would be to write a real python binding around fxtran.

Installation:
pip install pyfxtran

Usage:
import fxtran
result = fxtran.run(filename, kwargs)

Documentation:
The wrapper does not add any functionality over fxtran. Full documentation can
be found with the fxtran tool.

Notes:
On first use, pyfxtran will download fxtran and compile it. The executable is then stored
in the user's directory, its name begins with .fxtran and is followed by the fxtran version number.

Instead of downloading fxtran, if the FXTRAN\_FOR\_PYFXTRAN environment variable is set, on the
first use the 'git clone' command will be replace by a symlink to the directory pointed by this
variable and a cleaning will be done.
