forked from vishaalagartha/basketball_reference_scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (43 loc) · 1.07 KB
/
pyproject.toml
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
[tool.poetry]
name = "basketball-reference-scraper"
version = "3.0.11"
description = "A Python client for scraping stats and data from Basketball Reference"
authors = [
"Vishaal Agartha <[email protected]>",
"Aniket Braganza <[email protected]>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/aabragan/basketball_reference_scraper"
keywords = [
"nba",
"wnba",
"sports",
"data mining",
"basketball",
"basketball reference",
"basketball-reference.com",
]
packages = [{ include = "basketball_reference_scraper"}]
[tool.poetry.dependencies]
python = "^3.12"
beautifulsoup4 = "^4.12.3"
bs4 = "^0.0.2"
lxml = "^5.3.0"
numpy = "^2.1.2"
pandas = "^2.2.3"
python-dateutil = "^2.9.0.post0"
pytz = "^2024.2"
requests = "^2.32.3"
six = "^1.16.0"
soupsieve = "^2.6"
Unidecode = "^1.3.8"
selenium = "^4.25.0"
openpyxl = "^3.1.5"
html5lib = "^1.1"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"