Skip to content

Commit

Permalink
Coming right along
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincrom committed Apr 19, 2021
1 parent 8e7a70e commit 6f0a733
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion baseball/baseball.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,16 @@
'left': 7,
'center': 8,
'right': 9,
'designated': 10}
'designated': 10,
'1B': 3,
'2B': 4,
'3B': 5,
'SS': 6,
'P': 1,
'C': 2,
'LF': 7,
'CF': 8,
'RF': 9}

ON_BASE_SUMMARY_DICT = {'Single': '1B',
'Double': '2B',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='baseball',
version='13.1',
version='13.2',
description='Library to download, anaylyze, and visualize events in Major League Baseball games.',
url='https://github.com/benjamincrom/baseball',
author='Benjamin B. Crom',
Expand Down

0 comments on commit 6f0a733

Please sign in to comment.