|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "qbreader" |
3 | 3 | version = "1.0.0" |
| 4 | +requires-python = ">=3.13" |
4 | 5 | description = "Quizbowl library and Python wrapper for the qbreader API" |
5 | 6 | authors = [ |
6 | | - "Sky \"skysomorphic\" Hong <skysomorphic@pm.me>", |
7 | | - "Rohan Arni", |
8 | | - "Geoffrey Wu <geoffreywu1000@gmail.com>", |
| 7 | + { name = "Sky \"skysomorphic\" Hong", email = "skysomoprhic@pm.me" }, |
| 8 | + { name = "Rohan Arni" }, |
| 9 | + { name = "Geoffrey Wu", email = "geoffreywu1000@gmail.com" }, |
| 10 | +] |
| 11 | +maintainers = [ |
| 12 | + { name = "Sky \"skysomorphic\" Hong", email = "skysomorphic@pm.me" }, |
| 13 | + { name = "Geoffrey Wu", email = "geoffreywu1000@gmail.com" }, |
9 | 14 | ] |
10 | | -license = "MIT" |
| 15 | +license = { text = "MIT" } |
11 | 16 | readme = "README.md" |
| 17 | +keywords = ["quizbowl", "quiz bowl", "qbreader"] |
| 18 | +dynamic = ["classifiers"] |
| 19 | +dependencies = ["requests (>=2.31.0,<3.0.0)", "aiohttp (>=3.8.4,<4.0.0)"] |
| 20 | + |
| 21 | +[project.urls] |
12 | 22 | homepage = "https://github.com/qbreader/python-module" |
13 | 23 | repository = "https://github.com/qbreader/python-module" |
14 | 24 | documentation = "https://python-qbreader.readthedocs.io/" |
15 | | -keywords = ["quizbowl", "quiz bowl", "qbreader"] |
| 25 | + |
| 26 | +[tool.poetry] |
16 | 27 | classifiers = [ |
17 | 28 | "Development Status :: 5 - Production/Stable", |
18 | 29 | "Intended Audience :: Developers", |
19 | 30 | "Intended Audience :: Education", |
20 | 31 | "Intended Audience :: Science/Research", |
21 | | - "Programming Language :: Python :: 3.13", |
22 | 32 | "Operating System :: OS Independent", |
23 | 33 | "Topic :: Games/Entertainment", |
24 | 34 | "Topic :: Software Development :: Libraries :: Python Modules", |
25 | 35 | "Typing :: Typed", |
26 | | - "License :: OSI Approved :: MIT License", |
27 | 36 | ] |
28 | | - |
29 | | -[tool.poetry.dependencies] |
30 | | -python = "^3.13" |
31 | | -requests = "^2.31.0" |
32 | | -aiohttp = "^3.8.4" |
33 | | - |
| 37 | +include = [{ path = "tests", format = "sdist" }] |
34 | 38 |
|
35 | 39 | [tool.poetry.group.dev.dependencies] |
36 | 40 | black = "^23.3.0" |
@@ -65,5 +69,5 @@ testpaths = "tests" |
65 | 69 | asyncio_mode = "strict" |
66 | 70 |
|
67 | 71 | [build-system] |
68 | | -requires = ["poetry-core>=1.0.0"] |
| 72 | +requires = ["poetry-core>=2.0."] |
69 | 73 | build-backend = "poetry.core.masonry.api" |
0 commit comments