diff --git a/.github/workflows/python-package.yml b/.github/workflows/tests.yml similarity index 98% rename from .github/workflows/python-package.yml rename to .github/workflows/tests.yml index 7e5aedc..567f67e 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/tests.yml @@ -1,7 +1,7 @@ # This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python -name: Python package +name: tests on: push: diff --git a/CHANGELOG.md b/CHANGELOG.md index bb7a8b7..2bc17b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Change Log All notable changes to this project will be documented in this file. -## [development] - 10/6/24 +## [4.2.0] - 10/7/24 ### Added - Implemented an endpoint with `Client.get_event_rotation` which gets the events in the current rotation. - Added a method `Player.get_battle_logs` which directly gets the player's battle log. diff --git a/README.rst b/README.rst index 6b20ccc..31880ba 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,7 @@ Brawl Stats :target: https://github.com/SharpBit/brawlstats/blob/master/LICENSE :alt: MIT License -- This library is a sync and async Python wrapper for the Brawl Stars API. +- BrawlStats is a sync and async Python API wrapper to fetch statistics from the official Brawl Stars API. - Python 3.9 or later is required. Features @@ -79,7 +79,6 @@ Special thanks to this project's contributors ❤️ - `kjkui`_ - `kyb3r`_ - `Papiersnipper`_ -- `Pollen`_ - `OrangutanGaming`_ - `Stitch`_ diff --git a/docs/index.rst b/docs/index.rst index 16ddaa5..8439a8f 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -17,7 +17,7 @@ Welcome to Brawl Stats' documentation! :target: https://github.com/SharpBit/brawlstats/blob/master/LICENSE :alt: MIT License -- This library is a sync and async Python wrapper for the Brawl Stars API. +- BrawlStats is a sync and async Python API wrapper to fetch statistics from the official Brawl Stars API. - Python 3.9 or later is required. Features diff --git a/setup.py b/setup.py index b678b1b..f29c87e 100644 --- a/setup.py +++ b/setup.py @@ -15,14 +15,18 @@ setup( name='brawlstats', version=version, - description='BrawlStats is an easy-to-use Python API wrapper for the Brawl Stars API', + description='BrawlStats is an easy-to-use sync and async Python API wrapper' + 'to fetch statistics from the official Brawl Stars API', long_description=long_description, long_description_content_type='text/x-rst', url='https://github.com/SharpBit/brawlstats', author='SharpBit', author_email='sharpbit3618@gmail.com', license='MIT', - keywords=['brawl stars, brawlstats, supercell'], + keywords=[ + 'brawl stars, brawl stats, brawlstats, supercell, python, sync, async, ' + 'python wrapper, api wrapper, python api wrapper, python 3.9, python 3.10, python 3.11, python 3.12' + ], packages=find_packages(), install_requires=requirements, python_requires='>=3.9.0',