diff --git a/setup.py b/setup.py index 6c2cf36..44fa2fe 100755 --- a/setup.py +++ b/setup.py @@ -3,11 +3,20 @@ setup( name="statsbombpy", - version="0.1", + version="0.2", description="easily stream StatsBomb data into Python", + long_description="easily stream StatsBomb data into Python", url="https://github.com/statsbomb/statsbombpy", + download_url="https://github.com/statsbomb/statsbombpy/archive/v0.2.tar.gz", author="StatsBomb", author_email="support@statsbombservices.com", packages=["statsbombpy"], - install_requires=["cashier", "inflect", "nose2", "pandas", "requests", "requests-cache"], + install_requires=[ + "cashier", + "inflect", + "nose2", + "pandas", + "requests", + "requests-cache", + ], )