-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (26 loc) · 977 Bytes
/
setup.py
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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="nonebot-plugin-directlinker",
version="2.3.1",
author="uhpteam",
description="A plugin based on NoneBot2 to extract direct links of files in qq group.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Utmost-Happiness-Planet/nonebot-plugin-directlinker",
project_urls={
"Bug Tracker": "https://github.com/Utmost-Happiness-Planet/nonebot-plugin-directlinker/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
packages=["nonebot_plugin_directlinker"],
python_requires=">=3.7",
install_requires=[
"nonebot2 >= 2.0.0b2",
"nonebot-adapter-onebot >= 2.0.0b1"
],
)