-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 687 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(name='mlb-data',
version='0.1',
license='Apache 2.0',
description='Tools for manipulating the data from the major sources of MLB data',
author='Sean Kelly',
author_email='',
url='https://github.com/seankelly/mlb-data',
packages=['mlb'],
scripts=[
'bin/dump-bip',
'bin/dump-pitches',
'bin/fetch-gameday-data',
'bin/find-homeplate',
'bin/generate-cards',
'bin/parse-gameday-xml',
'bin/parse-retrosheet-games',
'bin/summarize-retrosheet',
],
install_requires=['lxml', 'numpy', 'requests', 'sqlalchemy'],
)