Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .coverage
Binary file not shown.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
include README.md MANIFEST.in setup.py .gitignore
recursive-include idlbridge *.py *.pyx *.pxd *.pxi *.pro VERSION
recursive-include dev *
31 changes: 29 additions & 2 deletions README → README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
IDLBridge
=========
# IDLBridge

A python wrapper for the IDL.

Expand All @@ -18,6 +17,34 @@ without requiring significant code refactoring.

- Dr Alex Meakins (alex.meakins@ukaea.uk)

# Installation

First ensure the `IDL_DIR` environment variable is set to the path to the IDL
installation root (containing `/bin` and `/external`). `IDLBridge` can then be
installed from [PyPI](https://pypi.org/):

```bash
pip install idlbridge
```

# Development

## Build source distribution

First install `build`:

```bash
pip install build
```

Then build the source distribution, note `IDL_DIR` must also be set for this:

```bash
python -m build --sdist .
```

## Run tests

```bash
python -m unittest
```
3 changes: 0 additions & 3 deletions dev/build.sh

This file was deleted.

3 changes: 0 additions & 3 deletions dev/test.sh

This file was deleted.