openbsd-ports/www/ipynb-py-convert/Makefile
thfr 4e9f08c1c3 import ipynb-py-convert
with additions and oks from bket@ and rsadowski@

DESCR:
Atom/Hydrogen or VSCode/Python allows creating a python files split into cells
with # %% separators with the ability to run cells via backend Jupyter session
and interactively show results back. ipynb-py-convert python module converts
files: .ipynb to .py and .py to .ipynb.

This can assist in version controlling ipynb projects, as .py doesn't include
output data.
2020-06-07 23:24:57 +00:00

22 lines
512 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2020/06/07 23:24:57 thfr Exp $
COMMENT = convert .py files to jupyter .ipynb notebooks and vice versa
MODPY_EGG_VERSION = 0.4.5
DISTNAME = ipynb-py-convert-${MODPY_EGG_VERSION}
CATEGORIES = www devel
HOMEPAGE = https://github.com/kiwi0fruit/ipynb-py-convert
MAINTAINER = Thomas Frohwein <thfr@openbsd.org>
# MIT
PERMIT_PACKAGE = Yes
MODULES = lang/python
MODPY_PI = Yes
MODPY_SETUPTOOLS = Yes
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_3}
NO_TEST = Yes
.include <bsd.port.mk>