forked from ian-shepherd/reus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 955 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
import setuptools
VERSION = "1.1.7"
DESCRIPTION = "A package that allows you scrape soccer information"
LONG_DESCRIPTION = """
A package that allows you to pull soccer statistics, player market values, and
transfer information, primarily from FBref, Fotmob, and Transfermarkt"""
setuptools.setup(
name="reus",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url="https://github.com/ian-shepherd/reus",
author="Ian Shepherd",
install_requires=[
"pandas>=2.2.0",
"numpy>=1.26.4",
"requests>=2.23.0",
"beautifulsoup4>=4.10.0",
],
python_requires=">=3.10",
keywords=["python", "fbref", "fotmob", "transfermarkt", "soccer", "football"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
)