-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
68 lines (62 loc) · 1.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "CBBpy"
dynamic = ["version"]
description = 'A Python-based web scraper for NCAA basketball.'
readme = "README.md"
authors = [{ name = "Daniel Cowan"}, {email = "[email protected]"}]
license = { text = "Apache-2.0" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = [
"college",
"basketball",
"scraper",
"scraping",
"web scraper",
"data",
"espn",
"analysis",
"science",
"analytics",
"cbb",
"cbbpy",
"ncaa",
"ncaam",
"ncaaw",
]
dependencies = [
'pandas>=2.0.0',
'numpy>=2.0.0',
'python-dateutil>=2.4.0',
'pytz>=2022.1',
'tqdm>=4.63.0',
'lxml>=4.9.0',
'joblib>=1.0.0',
'beautifulsoup4>=4.11.0',
'requests>=2.27.0',
'rapidfuzz>=3.9.0',
'platformdirs>=4.0.0',
]
requires-python = ">=3.9"
[project.urls]
homepage = "https://github.com/dcstats/CBBpy/"
issues = "https://github.com/dcstats/CBBpy/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["cbbpy", "cbbpy.utils"]
[tool.setuptools.package-data]
"cbbpy.utils" = ["*.csv"]
[tool.setuptools.dynamic]
version = {attr = "cbbpy.__version__"}