spiel-des-jahres


Namespiel-des-jahres JSON
Version 0.3.1 PyPI version JSON
download
home_pagehttps://recommend-games.github.io/spiel-des-jahres
SummarySpiel des Jahres predictions
upload_time2025-07-29 18:34:18
maintainerNone
docs_urlNone
authorMarkus Shepherd
requires_python<4.0,>=3.10.0
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Spiel des Jahres

[![PyPI](https://img.shields.io/pypi/v/spiel-des-jahres?style=flat-square)](https://pypi.python.org/pypi/spiel-des-jahres/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/spiel-des-jahres?style=flat-square)](https://pypi.python.org/pypi/spiel-des-jahres/)
[![PyPI - License](https://img.shields.io/pypi/l/spiel-des-jahres?style=flat-square)](https://pypi.python.org/pypi/spiel-des-jahres/)
[![Coookiecutter - Wolt](https://img.shields.io/badge/cookiecutter-Wolt-00c2e8?style=flat-square&logo=cookiecutter&logoColor=D4AA00&link=https://github.com/woltapp/wolt-python-package-cookiecutter)](https://github.com/woltapp/wolt-python-package-cookiecutter)


---

**Documentation**: [https://recommend-games.github.io/spiel-des-jahres](https://recommend-games.github.io/spiel-des-jahres)

**Source Code**: [https://github.com/recommend-games/spiel-des-jahres](https://github.com/recommend-games/spiel-des-jahres)

**PyPI**: [https://pypi.org/project/spiel-des-jahres/](https://pypi.org/project/spiel-des-jahres/)

---

Spiel des Jahres predictions

## Installation

```sh
pip install spiel-des-jahres
```

## Development

* Clone this repository
* Requirements:
  * [Poetry](https://python-poetry.org/)
  * Python 3.10+
* Create a virtual environment and install the dependencies

```sh
poetry install
```

* Activate the virtual environment

```sh
poetry shell
```

### Testing

```sh
pytest
```

### Documentation

The documentation is automatically generated from the content of the [docs directory](https://github.com/recommend-games/spiel-des-jahres/tree/master/docs) and from the docstrings
 of the public signatures of the source code. The documentation is updated and published as a [Github Pages page](https://pages.github.com/) automatically as part each release.

### Releasing

Trigger the [Draft release workflow](https://github.com/recommend-games/spiel-des-jahres/actions/workflows/draft_release.yml)
(press _Run workflow_). This will update the changelog & version and create a GitHub release which is in _Draft_ state.

Find the draft release from the
[GitHub releases](https://github.com/recommend-games/spiel-des-jahres/releases) and publish it. When
 a release is published, it'll trigger [release](https://github.com/recommend-games/spiel-des-jahres/blob/master/.github/workflows/release.yml) workflow which creates PyPI
 release and deploys updated documentation.

### Pre-commit

Pre-commit hooks run all the auto-formatting (`ruff format`), linters (e.g. `ruff` and `mypy`), and other quality
 checks to make sure the changeset is in good shape before a commit/push happens.

You can install the hooks with (runs for each commit):

```sh
pre-commit install
```

Or if you want them to run only for each push:

```sh
pre-commit install -t pre-push
```

Or if you want e.g. want to run all checks manually for all files:

```sh
pre-commit run --all-files
```

---

This project was generated using the [wolt-python-package-cookiecutter](https://github.com/woltapp/wolt-python-package-cookiecutter) template.

            

Raw data

            {
    "_id": null,
    "home_page": "https://recommend-games.github.io/spiel-des-jahres",
    "name": "spiel-des-jahres",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.10.0",
    "maintainer_email": null,
    "keywords": null,
    "author": "Markus Shepherd",
    "author_email": "markus@recommend.games",
    "download_url": "https://files.pythonhosted.org/packages/2b/48/b7d6167cea3987f7f78a8d04593f01f61303753c8fd090190dd9df996de7/spiel_des_jahres-0.3.1.tar.gz",
    "platform": null,
    "description": "# Spiel des Jahres\n\n[![PyPI](https://img.shields.io/pypi/v/spiel-des-jahres?style=flat-square)](https://pypi.python.org/pypi/spiel-des-jahres/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/spiel-des-jahres?style=flat-square)](https://pypi.python.org/pypi/spiel-des-jahres/)\n[![PyPI - License](https://img.shields.io/pypi/l/spiel-des-jahres?style=flat-square)](https://pypi.python.org/pypi/spiel-des-jahres/)\n[![Coookiecutter - Wolt](https://img.shields.io/badge/cookiecutter-Wolt-00c2e8?style=flat-square&logo=cookiecutter&logoColor=D4AA00&link=https://github.com/woltapp/wolt-python-package-cookiecutter)](https://github.com/woltapp/wolt-python-package-cookiecutter)\n\n\n---\n\n**Documentation**: [https://recommend-games.github.io/spiel-des-jahres](https://recommend-games.github.io/spiel-des-jahres)\n\n**Source Code**: [https://github.com/recommend-games/spiel-des-jahres](https://github.com/recommend-games/spiel-des-jahres)\n\n**PyPI**: [https://pypi.org/project/spiel-des-jahres/](https://pypi.org/project/spiel-des-jahres/)\n\n---\n\nSpiel des Jahres predictions\n\n## Installation\n\n```sh\npip install spiel-des-jahres\n```\n\n## Development\n\n* Clone this repository\n* Requirements:\n  * [Poetry](https://python-poetry.org/)\n  * Python 3.10+\n* Create a virtual environment and install the dependencies\n\n```sh\npoetry install\n```\n\n* Activate the virtual environment\n\n```sh\npoetry shell\n```\n\n### Testing\n\n```sh\npytest\n```\n\n### Documentation\n\nThe documentation is automatically generated from the content of the [docs directory](https://github.com/recommend-games/spiel-des-jahres/tree/master/docs) and from the docstrings\n of the public signatures of the source code. The documentation is updated and published as a [Github Pages page](https://pages.github.com/) automatically as part each release.\n\n### Releasing\n\nTrigger the [Draft release workflow](https://github.com/recommend-games/spiel-des-jahres/actions/workflows/draft_release.yml)\n(press _Run workflow_). This will update the changelog & version and create a GitHub release which is in _Draft_ state.\n\nFind the draft release from the\n[GitHub releases](https://github.com/recommend-games/spiel-des-jahres/releases) and publish it. When\n a release is published, it'll trigger [release](https://github.com/recommend-games/spiel-des-jahres/blob/master/.github/workflows/release.yml) workflow which creates PyPI\n release and deploys updated documentation.\n\n### Pre-commit\n\nPre-commit hooks run all the auto-formatting (`ruff format`), linters (e.g. `ruff` and `mypy`), and other quality\n checks to make sure the changeset is in good shape before a commit/push happens.\n\nYou can install the hooks with (runs for each commit):\n\n```sh\npre-commit install\n```\n\nOr if you want them to run only for each push:\n\n```sh\npre-commit install -t pre-push\n```\n\nOr if you want e.g. want to run all checks manually for all files:\n\n```sh\npre-commit run --all-files\n```\n\n---\n\nThis project was generated using the [wolt-python-package-cookiecutter](https://github.com/woltapp/wolt-python-package-cookiecutter) template.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Spiel des Jahres predictions",
    "version": "0.3.1",
    "project_urls": {
        "Documentation": "https://recommend-games.github.io/spiel-des-jahres",
        "Homepage": "https://recommend-games.github.io/spiel-des-jahres",
        "Repository": "https://github.com/recommend-games/spiel-des-jahres"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6ca7f1144743d6f8c0c01d142f38ca0b16f8c0d7fb705590bab07d2181d924a",
                "md5": "d5e5b70d596f98562b0224c409af60ea",
                "sha256": "49743493a56e9577b44b52e7f36ff55f97fd9407144292a76f52c65283985104"
            },
            "downloads": -1,
            "filename": "spiel_des_jahres-0.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d5e5b70d596f98562b0224c409af60ea",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.10.0",
            "size": 42202,
            "upload_time": "2025-07-29T18:34:17",
            "upload_time_iso_8601": "2025-07-29T18:34:17.694516Z",
            "url": "https://files.pythonhosted.org/packages/d6/ca/7f1144743d6f8c0c01d142f38ca0b16f8c0d7fb705590bab07d2181d924a/spiel_des_jahres-0.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b48b7d6167cea3987f7f78a8d04593f01f61303753c8fd090190dd9df996de7",
                "md5": "8c78815dc10b403f13de4bc1a45b40f0",
                "sha256": "2e47dbc36eb9fd9d4c6ca7060642a1bb3417e4e7f03930ef1333428ca9b1a8aa"
            },
            "downloads": -1,
            "filename": "spiel_des_jahres-0.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "8c78815dc10b403f13de4bc1a45b40f0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.10.0",
            "size": 40331,
            "upload_time": "2025-07-29T18:34:18",
            "upload_time_iso_8601": "2025-07-29T18:34:18.870040Z",
            "url": "https://files.pythonhosted.org/packages/2b/48/b7d6167cea3987f7f78a8d04593f01f61303753c8fd090190dd9df996de7/spiel_des_jahres-0.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-29 18:34:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "recommend-games",
    "github_project": "spiel-des-jahres",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "spiel-des-jahres"
}
        
Elapsed time: 0.54055s