-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 865 Bytes
/
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 = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "nbapi"
version = "0.1.0"
description = "Python interface to NBA Stats API."
requires-python = ">=3.10"
license = {file = "LICENSE.md"}
authors = [
{name = "Jon Deans", email = "[email protected]"},
]
readme = "README.md"
dependencies = [
"endpointer@git+ssh://[email protected]/jondeans/endpointer",
"loguru",
"pandas",
]
[project.optional-dependencies]
dev = [
"mypy==1.9.0",
"pytest==8.1.1",
"ruff==0.3.4"
]
[project.urls]
repository = "https://github.com/jondeans/nbapi"
[tool.pytest.ini_options]
addopts = "-r A -v -s --import-mode=importlib --doctest-modules"
testpaths = ["tests"]
python_files =[
"test_*.py",
"check_*.py",
"example_*.py"
]
[tool.ruff]
line-length = 100