Skip to content

Commit

Permalink
extras require disappeared somehow
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewRook committed Jun 17, 2016
1 parent ee030d9 commit 46c9c26
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
'pandas',
'scikit-learn']

EXTRAS_REQUIRES = {
EXTRAS_REQUIRE = {
"plotting": ["matplotlib"],
"nfldb": ["nfldb", "sqlalchemy"],
"dev": ["matplotlib", "nfldb", "sqlalchemy", "pytest", "pytest-cov"]
Expand Down Expand Up @@ -57,5 +57,6 @@
packages=PACKAGES,
package_data=PACKAGE_DATA,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE
)

0 comments on commit 46c9c26

Please sign in to comment.