-
Notifications
You must be signed in to change notification settings - Fork 547
/
pyproject.toml
44 lines (39 loc) · 1.16 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "nba_api"
version = "1.6.1"
description = "An API Client package to access the APIs for NBA.com"
license = "MIT"
authors = [
"Swar Patel <[email protected]>",
]
maintainers = [
"Swar Patel <[email protected]>",
"Randy Forbes <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/swar/nba_api"
documentation = "https://github.com/swar/nba_api/blob/master/README.md"
keywords = ["api", "basketball", "data", "nba", "sports", "stats"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development"
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32.3"
numpy = "^1.22.2"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/swar/nba_api/issues"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^4.0"
flake8 = "^7.1.1"
pandas = "^2.2.3"
[tool.pytest.ini_options]
testpaths = "./tests/unit/"