Metadata-Version: 2.4
Name: furiosa-native-compiler
Version: 2026.2.0rc0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: furiosa-torch-ext==2026.2.0rc0
Requires-Dist: pyyaml==6.0.1
Requires-Dist: torch==2.10.0
Requires-Dist: pytest~=8.3 ; extra == 'test'
Requires-Dist: pytest-asyncio~=0.21 ; extra == 'test'
Requires-Dist: transformers==5.1.0 ; extra == 'test'
Requires-Dist: requests==2.32.2 ; extra == 'test'
Provides-Extra: test
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Home, https://furiosa.ai
Project-URL: Documentation, https://furiosa-ai.github.io/docs

This is a Python binding for the Furiosa Compiler.
This is designed to be used in LLM API of furiosa-llm.

## Building
```
cd ../furiosa-torch-ext
pip install -e .
cd ../furiosa-compiler-python
pip install -e .
```

## Testing
After building the project, please run the tests as following

```sh
make test
```
