-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
28 lines (26 loc) · 916 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-repeater",
version="3.1.5",
author="Kl1nge5 et al.",
description="A plugin based on NoneBot2, auto +1 in group.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ninthseason/nonebot-plugin-repeater",
project_urls={
"Bug Tracker": "https://github.com/ninthseason/nonebot-plugin-repeater/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
packages=["nonebot_plugin_repeater"],
python_requires=">=3.7",
install_requires=[
"nonebot2 >= 2.0.0b2",
"nonebot-adapter-onebot >= 2.0.0b1"
]
)