-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.38 KB
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
[build-system]
requires = ["setuptools>=80.9.0", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "nonebot-plugin-sky"
description = "基于Nonebot2的sky光遇攻略插件"
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["version"]
authors = [
{ name="Kaguya233qwq", email="marisa_qwq@qq.com" },
]
keywords = ["nonebot2", "nonebot", "sky光遇", "光遇"]
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Natural Language :: Chinese (Simplified)",
]
dependencies = [
"aiofiles>=24.1.0",
"bs4>=0.0.2",
"click",
"httpx>=0.28.1",
"lxml>=6.0.0",
"nb-cli>=1.4.2",
"nonebot-adapter-onebot>=2.4.6",
"nonebot-plugin-apscheduler>=0.5.0",
"nonebot2>=2.4.2",
"packaging>=25.0",
"setuptools>=80.9.0",
]
[project.urls]
Homepage = "https://github.com/Kaguya233qwq/nonebot_plugin_sky"
Repository = "https://github.com/Kaguya233qwq/nonebot_plugin_sky"
Issues = "https://github.com/Kaguya233qwq/nonebot_plugin_sky/issues"
# 包含数据文件
[tool.setuptools]
# 在 MANIFEST.in 文件中指定文件
include-package-data = true
[tool.setuptools.package-data]
"nonebot_plugin_sky" = ["src/resources/**/*"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["nonebot_plugin_sky*", "sky_cli*"]
[tool.setuptools_scm]
# 附加脚手架组件
[project.scripts]
sky = "sky_cli.cli:sky"