lagru / spin

Developer tool for scientific Python libraries

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ’« Scientific Python INcantations (spin)

A developer tool for scientific Python libraries

NOTE: If you are looking for devpy, this is it! We had to rename the package to publish it on PyPi.

Developers need to memorize a whole bunch of magic command-line incantations. And these incantations change from time to time! Typically, their lives are made simpler by a Makefile, but Makefiles can be convoluted, are not written in Python, and are hard to extend. The rationale behind spin is therefore to provide a simple interface for common development tasks. It comes with a few common build commands out the box, but can easily be customized per project.

As a curiosity: the impetus behind developing the tool was the mass migration of scientific Python libraries (SciPy, scikit-image, and NumPy, etc.) to Meson, after distutils was deprecated. When many of the build and installation commands changed, it made sense to abstract away the nuisance of having to re-learn them.

Installation

pip install spin

Configuration

Settings are in your project's pyproject.toml. As an example, see the [tool.spin] section of an example pyproject.toml.

The [tool.spin] section should contain:

package = "pkg_importname"  # name of your package
commands = [
  "spin.cmds.meson.build",
  "spin.cmds.meson.test"
]

See the command selection below.

Command sections

Once you have several commands, it may be useful to organize them into sections. In pyproject.toml, instead of specifying the commands as a list, use the following structure:

[tool.spin.commands]
"Build" = [
  "spin.cmds.meson.build",
  "spin.cmds.meson.test"
]
"Environments" = [
  "spin.cmds.meson.shell",
  "spin.cmds.meson.ipython",
  "spin.cmds.meson.python"
]

These commands will then be rendered as:

Build:
  build  πŸ”§ Build package with Meson/ninja and install
  test   πŸ”§ Run tests

Environments:
  shell    πŸ’» Launch shell with PYTHONPATH set
  ipython  πŸ’» Launch IPython shell with PYTHONPATH set
  python   🐍 Launch Python shell with PYTHONPATH set

Running

spin

or

python -m spin

Built-in commands

  build    πŸ”§ Build package with Meson/ninja and install to `build-install`
  ipython  πŸ’» Launch IPython shell with PYTHONPATH set
  python   🐍 Launch Python shell with PYTHONPATH set
  shell    πŸ’» Launch shell with PYTHONPATH set
  test     πŸ”§ Run pytest

Build (PEP 517 builder)

spin was started with Meson in mind, but we're working on expanding commands for PEP 517 build.

  sdist    πŸ“¦ Build a source distribution in `dist/`.

πŸ§ͺ Custom commands

spin can invoke custom commands. These commands define their own arguments, and have access to the pyproject.toml file for further configuration.

See, e.g., the example custom command.

Add custom commands to the commands variable in the [tool.spin] section of pyproject.toml as follows:

commands = [..., '.spin/cmds.py:example']

Here, the command is stored in .spin/cmds.py, and the function is named example.

Configuration

Custom commands can access the pyproject.toml as follows:

from spin import util


@click.command()
def example():
    """Command that accesses `pyproject.toml` configuration"""
    config = util.get_config()
    print(config["tool.spin"])

History

The dev.py tool was proposed for SciPy by Ralf Gommers and implemented by Sayantika Banik, Eduardo Naufel Schettino, and Ralf Gommers (also see Sayantika's blog post). Inspired by that implementation, spin (this package) is a minimal rewrite by StΓ©fan van der Walt, that aims to be easily extendable so that it can be used across ecosystem libraries. We thank Danila Bredikhin and Luca Marconato who kindly donated the spin name on PyPi.

About

Developer tool for scientific Python libraries

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 93.1%Language:C 4.1%Language:Meson 2.8%