-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
20 lines (19 loc) · 880 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
setuptools.setup(
name="collegebaseball",
version="1.3.0-alpha",
url="https://github.com/nathanblumenfeld/collegebaseball",
author="Nathan Blumenfeld",
author_email="[email protected]",
description="A college baseball analysis package for Python. Includes functionality for data acquisition and calculation of advanced metrics.",
long_description=open('DESCRIPTION.rst').read(),
packages=setuptools.find_packages(),
install_requires=["pandas", "numpy",
"requests", "lxml", "bs4", "importlib", "tqdm"],
keywords=["baseball", "ncaa", "ncaa_baseball",
"college_baseball", "college_sports"],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'],
include_package_data=True)