Metadata-Version: 2.4
Name: neleus
Version: 0.1.1
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
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: Topic :: Office/Business :: Financial :: Investment
Requires-Dist: aiohttp>=3.9.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: typer>=0.9.0
Requires-Dist: rich>=13.0.0
Requires-Dist: toml>=0.10.2
Requires-Dist: numpy>=1.24.0
Requires-Dist: pytest>=7.0 ; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21 ; extra == 'dev'
Requires-Dist: black>=23.0 ; extra == 'dev'
Requires-Dist: ruff>=0.1.0 ; extra == 'dev'
Requires-Dist: mypy>=1.5 ; extra == 'dev'
Requires-Dist: maturin>=1.0 ; extra == 'dev'
Provides-Extra: dev
Summary: Hyperliquid-first trading CLI and Python toolkit
Keywords: trading,backtesting,crypto,quantitative,hyperliquid
Author: Neleus Team
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Documentation, https://neleus.trade/docs
Project-URL: Homepage, https://neleus.trade
Project-URL: Repository, https://github.com/auralshin/neleus

# Neleus Python Package

Neleus is a Hyperliquid-first CLI and Python toolkit backed by a Rust core.

The package provides:
- the `neleus` CLI
- Python strategy scaffolding and runtime helpers
- Hyperliquid market access through the Rust bridge

## Install From Source

```bash
pip install maturin
maturin develop --release -m ../crates/pybridge/Cargo.toml
pip install -e .
```

## Usage

No-project market workflows:

```bash
neleus market search BTC
neleus market scan --scope perps
neleus market book BTC-PERP
```

Project workflow:

```bash
neleus new my_strategy_project
cd my_strategy_project
neleus backtest --strategy momentum
```

Full documentation lives in [`../docs/index.md`](../docs/index.md) and can be hosted with Zensical.

