generated from A-kirami/nonebot-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (46 loc) · 1.7 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
[project]
name = "nonebot-plugin-oi-helper"
version = "0.1.2"
description = "A NoneBot2 plugin for querying OI/ACM related information, including LeetCode daily question and Luogu daily report."
readme = "README.md"
requires-python = ">=3.10, <4.0"
authors = [{ name = "talentestors", email = "[email protected]" }]
license = { text = "AGPL-3.0-or-later" }
keywords = ["nonebot", "plugin", "OI", "ACM", "LeetCode", "Luogu"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: AsyncIO",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"nonebot-plugin-apscheduler>=0.5.0",
"nonebot2[aiohttp]>=2.4.0",
"requests>=2.32.3",
]
[dependency-groups]
dev = [
"nonebot-adapter-console>=0.6.0",
"nonebug>=0.4.3",
"pip>=24.3.1",
"pytest-asyncio>=0.25.0",
]
[project.urls]
homepage = "https://github.com/talentestors/nonebot-plugin-oi-helper"
repository = "https://github.com/talentestors/nonebot-plugin-oi-helper"
documentation = "https://github.com/talentestors/nonebot-plugin-oi-helper#readme"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["pyproject.toml", "README.md", "LICENSE", "nonebot_plugin_oi_helper"]
exclude = ["tests", "docs"]