Metadata-Version: 2.4
Name: LSSlab
Version: 0.0.1
Summary: Cosmological Large-Scale Structure Analysis Lab.
Author-email: Siyi Zhao <siyizhao17@gmail.com>
License: BSD 3-Clause License
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# LSSlab

Lightweight scaffolding for the LSSlab Python package.

## Installation (local dev)

```
pip install -e .
```

### Recommended: isolated env

```
python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install -e .
```

## Usage

```python
import lsslab

print(lsslab.__version__)
```

## Development

- Tooling (one-time): `pip install --upgrade build twine`
- Build: `python -m build`
- Check artifacts: `python -m twine check dist/*`

## License

BSD-3-Clause (see LICENSE)
