-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.15 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "nba-on-court"
version = "0.3.0"
description = "Adding players on court to play-by-play data"
license = "MIT"
authors = [
"Vladislav Shufinsky <[email protected]>",
]
maintainers = [
"Vladislav Shufinsky <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/shufinskiy/nba-on-court"
documentation = "https://github.com/shufinskiy/nba-on-court/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.8"
pandas = ">=1.3.5"
requests = "*"
nba-api = "^1.1.8"
numpy = "^1.0.0"
polyleven = "^0.8"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/shufinskiy/nba-on-court/issues"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
flake8 = "^4.0.1"
[tool.pytest.ini_options]
testpaths = "./tests/"