Metadata-Version: 2.5
Name: pipyter
Version: 0.1.4
Summary: AI-native scientific workspace runtime built on Jupyter
Project-URL: Homepage, https://github.com/winbeau/Pipyter
Project-URL: Repository, https://github.com/winbeau/Pipyter
Project-URL: Issues, https://github.com/winbeau/Pipyter/issues
Author: winbeau
License: MIT License
        
        Copyright (c) 2026 winbeau
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: jupyter,jupyterlab,notebook,scientific-computing,workspace
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: FastAPI
Classifier: Framework :: Jupyter
Classifier: Framework :: Jupyter :: JupyterLab
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.10
Requires-Dist: fastapi<1,>=0.115
Requires-Dist: httpx<1,>=0.27
Requires-Dist: jupyter-client<9,>=8.6
Requires-Dist: jupyterlab<5,>=4.4
Requires-Dist: nbformat<6,>=5.10
Requires-Dist: pydantic<3,>=2.8
Requires-Dist: tomli>=2; python_version < '3.11'
Requires-Dist: uvicorn[standard]<1,>=0.30
Provides-Extra: dev
Requires-Dist: build>=1.2; extra == 'dev'
Requires-Dist: pytest-cov>=5; extra == 'dev'
Requires-Dist: pytest>=8.3; extra == 'dev'
Description-Content-Type: text/markdown

# Pipyter

AI-native scientific workspace built around Jupyter, remote compute, and agent-assisted research workflows.

## Repository layout

- `web/` — standalone React + TypeScript portal.
- `scripts/` — local development helpers.
- `AGENT.md` — architecture and contribution guidance.
- `draft.md` — current product and interaction draft.
- `engines/` — ignored local source/reference checkouts; normal build/runtime code must not depend on them.
- `packages/pigent/` — tracked first-party Pigent AI/Agent/runtime/host source maintained directly in Pipyter.

## Architecture plans

- [Workspace v0.1](docs/plans/workspace-v0.1/README.md)
- [Pigent v0.1](docs/plans/pigent-v0.1/README.md) — ten Agent tools, Ask/Plan/Auto, full runtime-user execution, Pigent/Shell design migration, first-party BeauPi code embedding, and PyPI packaging

## User installation

```bash
uv tool install pipyter
pipyter --version
```

`uv tool install` is the recommended user-level path. Pigent ships in the same PyPI distribution; it does not require a global npm/BeauPi package or first-launch code download. Pigent execution currently requires Node.js `>=22.19`, while ordinary Workspace features remain usable when Node is unavailable.

Pigent model/API configuration uses exactly:

```text
~/.config/pipyter/pigent/settings.json
~/.config/pipyter/pigent/auth.json
```

`settings.json` selects providers/models and stores non-secret model/protocol definitions; `auth.json` stores API-key/OAuth credentials. Pipyter does not use `models.json`, `models-store.json`, or automatically inherit `~/.beaupi/` configuration. `XDG_CONFIG_HOME` is respected when set.

## Web development

```bash
cd web
pnpm install
pnpm dev
```

Verification:

```bash
cd web
pnpm typecheck
pnpm build
```
