Metadata-Version: 2.1
Name: hy-ipython
Version: 0.0.1.post1
Summary: Evaluate Hy code cells using %hy and %%hy magics.
Author-email: Gregory Werbin <outthere@me.gregwerbin.com>
Description-Content-Type: text/markdown
Classifier: Framework :: IPython
Classifier: Framework :: Jupyter
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Lisp
Classifier: Programming Language :: Scheme
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Dist: hy == 0.24
Requires-Dist: ipython
Project-URL: Home, https://sr.ht/~wintershadows/hy-ipython
Project-URL: Source, https://git.sr.ht/~wintershadows/hy-ipython

# hy-ipython: a Hy magic for IPython

Currently requires _exactly_ [Hy 0.24](https://pypi.org/project/hy/0.24.0/).

## Installation

```sh
pip install hy-ipython
```

## Development

Requires [Flit](https://flit.pypa.io/).

```sh
# Create a venv (or use virtualenv)
python -m venv ./project.venv

# Install into the venv
flit install --symlink --python ./project.venv/bin/python

# Build wheel and sdist
flit build --format wheel --setup-py
flit build --format sdist --setup-py

# Publish to PyPI
flit publish --format wheel --setup-py
flit publish --format sdist --setup-py
```

Don't forget to set up your `pypirc` file: <https://packaging.python.org/en/latest/specifications/pypirc/>.

