mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-28 06:45:19 +08:00
🔀 Merge pull request #262
Fix: exclude all `__init__.py` in adapter packaging
This commit is contained in:
commit
51304fdd8e
@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "nonebot-adapter-cqhttp"
|
||||
version = "2.0.0a11.post1"
|
||||
version = "2.0.0a11.post2"
|
||||
description = "OneBot(CQHTTP) adapter for nonebot2"
|
||||
authors = ["yanyongyu <yyy@nonebot.dev>"]
|
||||
license = "MIT"
|
||||
@ -20,7 +20,7 @@ classifiers = [
|
||||
packages = [
|
||||
{ include = "nonebot" }
|
||||
]
|
||||
exclude = ["nonebot/adapters/__init__.py"]
|
||||
exclude = ["nonebot/__init__.py", "nonebot/adapters/__init__.py"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.7.3"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "nonebot-adapter-ding"
|
||||
version = "2.0.0a11.post1"
|
||||
version = "2.0.0a11.post2"
|
||||
description = "Ding adapter for nonebot2"
|
||||
authors = ["Artin <lengthmin@gmail.com>", "yanyongyu <yyy@nonebot.dev>"]
|
||||
license = "MIT"
|
||||
@ -20,7 +20,7 @@ classifiers = [
|
||||
packages = [
|
||||
{ include = "nonebot" }
|
||||
]
|
||||
exclude = ["nonebot/adapters/__init__.py"]
|
||||
exclude = ["nonebot/__init__.py", "nonebot/adapters/__init__.py"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.7.3"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "nonebot-adapter-mirai"
|
||||
version = "2.0.0a11.post1"
|
||||
version = "2.0.0a11.post2"
|
||||
description = "Mirai Api HTTP adapter for nonebot2"
|
||||
authors = ["Mix <admin@yami.im>", "yanyongyu <yyy@nonebot.dev>"]
|
||||
license = "AGPL-3.0-or-later"
|
||||
@ -20,7 +20,7 @@ classifiers = [
|
||||
packages = [
|
||||
{ include = "nonebot" }
|
||||
]
|
||||
exclude = ["nonebot/adapters/__init__.py"]
|
||||
exclude = ["nonebot/__init__.py", "nonebot/adapters/__init__.py"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.7.3"
|
||||
|
Loading…
Reference in New Issue
Block a user