Skip to content

Commit 9801c9a

Browse files
modify setup.py
1 parent f493215 commit 9801c9a

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name = "nonebot-plugin-BingImage",
5+
version = "0.0.1",
6+
keywords = ["nonebot","nonebot-plugin","BingImage","Bing", "nonebot-plugin-BingImage"],
7+
description = "Get Bing Images for NoneBot2",
8+
long_description = "A NoneBot2 plugin that gets bing images.",
9+
license = "GPLv3 Licence",
10+
url = "https://github.com/ericzhang-debug/nonebot_plugin_BingImage",
11+
author = "EricZhang",
12+
author_email = "15364519511@163.com",
13+
packages = find_packages(),
14+
include_package_data = True,
15+
platforms = "any",
16+
install_requires = [
17+
"nonebot2>=2.0.0b3",
18+
"httpx>=0.20.0,<1.0.0",
19+
"nonebot-adapter-onebot>=2.0.0b1",
20+
"nonebot-plugin-apscheduler>=0.1.0",
21+
"requests",
22+
"parsel",
23+
"faker"
24+
]
25+
)

0 commit comments

Comments
 (0)