diff --git a/CHANGELOG.md b/CHANGELOG.md index 12ae1e3..f858c4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [1.0.1] - 2021-01-25 +- Fix setup.py project metadata + ## [1.0.0] - 2021-01-25 ### Added - Authentication through Client Credentials diff --git a/setup.py b/setup.py index f11677f..c36e0b7 100644 --- a/setup.py +++ b/setup.py @@ -17,13 +17,17 @@ setup( name='wavyfm', - version='1.0.0', + version='1.0.1', description='Official Python library for wavy.fm', long_description=long_description, long_description_content_type="text/markdown", - author="@aramperes", + author="Aram Peres", author_email="aram.peres@wavy.fm", url='https://wavy.fm/developers', + project_urls={ + 'Documentation': 'https://github.com/wavy/wavyfm-python', + 'Source': 'https://github.com/wavy/wavyfm-python', + }, install_requires=[ 'requests>=2.20.1' ],