-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·48 lines (44 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
from mlbapi import __version__
requirements = [
'requests',
'python-dateutil',
'inflection'
]
setup(
name='mlbapi',
version=__version__,
description='A python3 API wrapper for the MLB API at statsmlb.mlb.com',
url='https://github.com/trevor-viljoen/mlbapi',
author='Trevor Viljoen',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
classifiers=[
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
keywords=[
'MLB',
'MLB API',
'Major League Baseball',
'baseball',
'baseball API',
'baseball data',
'baseball scores',
'baseball statistics',
'baseball stats',
],
platforms='ANY',
install_requires=requirements,
python_requires='>=3.6',
extras_require={
'dev': ['pytest', 'pytest-cov', 'coveralls']
}
)