Metadata-Version: 2.1
Name: franky-ipython
Version: 0.1.0
Summary: Ipython dark theme extension
Keywords: ipython,extension,theme
Author-Email: Gilles Coissac <gilles@ideographe.fr>
License: GPL-3.0
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Framework :: IPython
Classifier: Typing :: Typed
Project-URL: homepage, https://github.com/gravures/franky/packages/franky-ipython
Project-URL: repository, https://github.com/gravures/franky/packages/franky-ipython
Project-URL: documentation, https://github.com/gravures/franky/
Project-URL: issue, https://github.com/gravures/franky/issues
Requires-Python: >=3.11
Requires-Dist: franky-theme
Description-Content-Type: text/markdown

# Ipython-franky

An Ipython dark theme extension.

## Installing

Install the python module inside the virtual environment of your `Ipython`.
If for example, you have installed `Ipython` with the `uv` tool command, you could do:

```bash
uv pip install --inexact --prefix="$(uv tool dir)"/ipython franky-ipython
```

Add the module to the extensions list in your `ipython_config.py` file.

```python
c = get_config()
c.InteractiveShellApp.extensions.append("franky_ipython")
```
