Metadata-Version: 2.1
Name: biosim_client
Version: 0.2.2
Summary: This is a library to access biosimulations.org APIs.
Home-page: https://github.com/biosimulations/biosim-client
Author: Jim Schaff
Author-email: schaff@uchc.edu
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: ipython (>=8.32.0,<9.0.0)
Requires-Dist: matplotlib (>=3.9.2,<4.0.0)
Requires-Dist: numpy (>=2.1.3,<3.0.0)
Requires-Dist: pandas (>=2.2.3,<3.0.0)
Requires-Dist: pillow (>=11.1.0,<12.0.0)
Requires-Dist: pydantic (>=2.9.2,<3.0.0)
Requires-Dist: pymupdf (>=1.25.3,<2.0.0)
Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
Requires-Dist: typing-extensions (>=4.12.2,<5.0.0)
Requires-Dist: urllib3 (>=2.2.3,<3.0.0)
Project-URL: Documentation, https://jcschaff.github.io/biosim-client/
Project-URL: Repository, https://github.com/biosimulations/biosim-client
Description-Content-Type: text/markdown

# biosim-client

[![Release](https://img.shields.io/github/v/release/biosimulations/biosim-client)](https://img.shields.io/github/v/release/biosimulations/biosim-client)
[![Build status](https://img.shields.io/github/actions/workflow/status/biosimulations/biosim-client/main.yml?branch=main)](https://github.com/biosimulations/biosim-client/actions/workflows/main.yml?query=branch%3Amain)
[![codecov](https://codecov.io/gh/biosimulations/biosim-client/branch/main/graph/badge.svg)](https://codecov.io/gh/biosimulations/biosim-client)
[![Commit activity](https://img.shields.io/github/commit-activity/m/biosimulations/biosim-client)](https://img.shields.io/github/commit-activity/m/biosimulations/biosim-client)
[![License](https://img.shields.io/github/license/biosimulations/biosim-client)](https://img.shields.io/github/license/biosimulations/biosim-client)

This is a library to access biosimulations.org APIs.

- **Github repository**: <https://github.com/biosimulations/biosim-client/>
- **Documentation** <https://biosimulations.github.io/biosim-client/>

## Getting started with your project

First, create a repository on GitHub with the same name as this project, and then run the following commands:

```bash
git init -b main
git add .
git commit -m "init commit"
git remote add origin git@github.com:biosimulations/biosim-client.git
git push -u origin main
```

Finally, install the environment and the pre-commit hooks with

```bash
make install
```

You are now ready to start development on your project!
The CI/CD pipeline will be triggered when you open a pull request, merge to main, or when you create a new release.

To finalize the set-up for publishing to PyPI or Artifactory, see [here](https://fpgmaas.github.io/cookiecutter-poetry/features/publishing/#set-up-for-pypi).
For activating the automatic documentation with MkDocs, see [here](https://fpgmaas.github.io/cookiecutter-poetry/features/mkdocs/#enabling-the-documentation-on-github).
To enable the code coverage reports, see [here](https://fpgmaas.github.io/cookiecutter-poetry/features/codecov/).

## Releasing a new version

- Create an API Token on [PyPI](https://pypi.org/).
- Add the API Token to your projects secrets with the name `PYPI_TOKEN` by visiting [this page](https://github.com/biosimulations/biosim-client/settings/secrets/actions/new).
- Create a [new release](https://github.com/biosimulations/biosim-client/releases/new) on Github.
- Create a new tag in the form `*.*.*`.
- For more details, see [here](https://fpgmaas.github.io/cookiecutter-poetry/features/cicd/#how-to-trigger-a-release).

---

Repository initiated with [fpgmaas/cookiecutter-poetry](https://github.com/fpgmaas/cookiecutter-poetry).

