Metadata-Version: 2.4
Name: session_py
Version: 0.62.0
Summary: A minimal Python geometry library
Project-URL: Homepage, https://github.com/petrasvestartas/session_py
Project-URL: Repository, https://github.com/petrasvestartas/session_py
Author-email: Petras Vestartas <petrasvestartas@gmail.com>
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Requires-Dist: grpcio-tools>=1.60.0
Requires-Dist: numpy>=1.20.0
Requires-Dist: protobuf>=5.0.0
Provides-Extra: dev
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Provides-Extra: performance
Requires-Dist: numba>=0.56.0; extra == 'performance'
Description-Content-Type: text/markdown

# session_py

Python geometry kernel. Published to [PyPI](https://pypi.org/project/session-py/) automatically on every push to main.

## Install

```bash
pip install session-py
```

## Development Setup

```bash
uv venv uvsession --python 3.11
source uvsession/bin/activate   # macOS/Linux
source uvsession/Scripts/activate  # Windows (Git Bash)

uv pip install -e .
```

## Test

```bash
pytest -v
```
