-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
73 lines (64 loc) · 1.96 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
69
70
71
72
73
[project]
name = "qbreader"
version = "1.0.1"
requires-python = ">=3.11"
description = "Quizbowl library and Python wrapper for the qbreader API"
authors = [
{ name = "Sky \"skysomorphic\" Hong", email = "[email protected]" },
{ name = "Rohan Arni" },
{ name = "Geoffrey Wu", email = "[email protected]" },
]
maintainers = [
{ name = "Sky \"skysomorphic\" Hong", email = "[email protected]" },
{ name = "Geoffrey Wu", email = "[email protected]" },
]
license = { text = "MIT" }
readme = "README.md"
keywords = ["quizbowl", "quiz bowl", "qbreader"]
dynamic = ["classifiers"]
dependencies = ["requests (>=2.31.0,<3.0.0)", "aiohttp (>=3.8.4,<4.0.0)"]
[project.urls]
homepage = "https://github.com/qbreader/python-module"
repository = "https://github.com/qbreader/python-module"
documentation = "https://python-qbreader.readthedocs.io/"
[tool.poetry]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
include = [{ path = "tests", format = "sdist" }]
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
isort = "^5.12.0"
flake8 = "^6.0.0"
pydocstyle = "^6.3.0"
mypy = "^1.4.1"
types-requests = "^2.31.0.1"
tox = "^4.6.4"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.1"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
numpydoc = "^1.5.0"
furo = "^2023.9.10"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
line_length = 88
[tool.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
addopts = "-v --cov=qbreader --cov-report=term-missing --cov-report=xml --cov-report=html"
testpaths = "tests"
asyncio_mode = "strict"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"