Skip to content

Commit

Permalink
Merge pull request #19 from American-Soccer-Analysis/cachecontrol-bug
Browse files Browse the repository at this point in the history
ASA-195: Define install_requires in setup.py
  • Loading branch information
tyler-richardett authored Feb 18, 2022
2 parents 6c2a22a + 364d52b commit 93d9372
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion python-package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
setup(
name="itscalledsoccer",
packages=find_packages(exclude=["tests", "tests.*"]),
version="0.1.1",
version="0.1.2",
description="Programmatically interact with the American Soccer Analysis API",
long_description=long_description,
long_description_content_type = "text/markdown",
Expand All @@ -22,4 +22,10 @@
],
python_requires=">=3.7",
keywords="stats soccer api american machine learning football",
install_requires=[
"requests==2.25.1",
"CacheControl==0.12.6",
"rapidfuzz==1.9.1",
"pandas==1.3.1"
]
)

0 comments on commit 93d9372

Please sign in to comment.