Metadata-Version: 2.1
Name: starccato
Version: 0.0.0
Summary: FILL ME
Author-email: Tarin E <tarin@gmail.com>
Project-URL: Homepage, https://github.com/tarin-e/starccato
Project-URL: Bug Reports, https://github.com/tarin-e/starccato
Project-URL: Source, https://github.com/tarin-e/starccato
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: scikit-learn>=1.3.2
Requires-Dist: torch>=2.0.1
Requires-Dist: torchsummary>=1.5.1
Requires-Dist: torchvision>=0.15.2
Requires-Dist: pandas
Requires-Dist: click
Requires-Dist: loguru
Requires-Dist: matplotlib
Requires-Dist: tqdm
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-click; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: coverage[toml]; extra == "dev"
Requires-Dist: pre-commit; extra == "dev"
Requires-Dist: flake8>=5.0.4; extra == "dev"
Requires-Dist: black==22.10.0; extra == "dev"
Requires-Dist: jupyter-book; extra == "dev"

[![Coverage Status](https://coveralls.io/repos/github/starccato/starccato/badge.svg?branch=main)](https://coveralls.io/github/starccato/starccato?branch=main)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

# starccato (Stellar Core Collapse GW generator)

FILL ME DESCRIPTION


## Installation

```
pip install starccato
```

## Development

```
git clone https://github.com/tarin-e/starccato.git
cd starccato
pip install -e .[dev]
pre-commit install
```

Ensure unit tests are passing locally and on the CI!
```
pytest tests/
```

## Releasing to PyPI

1. Update the version in `setup.py`
2. Create a tagged commit with the version number
3. Push the tag to GitHub

```
git tag -a v0.1.0 -m "v0.1.0"
git push origin v0.1.0
```
