forked from roclark/sportsipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 932 Bytes
/
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
from setuptools import find_packages, setup
with open('README.rst', 'r') as f:
long_description = f.read()
with open('VERSION', 'r') as f:
version = f.read()
setup(
name='sportsipy',
version=version,
author='Robert Clark',
author_email='[email protected]',
description='A free sports API written for python',
long_description=long_description,
license='MIT',
url='https://github.com/roclark/sportsipy',
packages=find_packages(),
python_requires='>=3.7',
keywords='stats sports api sportsipy machine learning',
install_requires=[
"numpy >= 1.19.5",
"pandas >= 0.24.1",
"pyquery >= 1.4.0",
"requests >= 2.18.4"
],
classifiers=(
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
),
)