Skip to content

Commit

Permalink
Merge pull request #45 from probberechts/fix-deps
Browse files Browse the repository at this point in the history
Add missing dependencies
  • Loading branch information
scotty779 authored Mar 27, 2023
2 parents 994d645 + daaef7b commit b6d3b7b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="statsbombpy",
version="1.8.0",
version="1.8.1",
description="Easily stream StatsBomb data into Python",
long_description=README,
long_description_content_type="text/markdown",
Expand All @@ -16,9 +16,15 @@
author_email="[email protected]",
packages=["statsbombpy"],
install_requires=[
"nose2",
"pandas",
"requests",
"requests-cache",
"inflect",
"joblib",
],
extras_require={
'dev': [
"nose2",
]
},
)

0 comments on commit b6d3b7b

Please sign in to comment.