-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (51 loc) · 1.77 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (51 loc) · 1.77 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
56
57
from pathlib import Path
from setuptools import find_packages, setup
BASE_DIR = Path(__file__).resolve().parent
README_PATH = BASE_DIR / "README.md"
INSTALL_REQUIRES = [
"nonebot2>=2.2.0",
"nonebot-adapter-onebot>=2.0.0",
"fastapi",
"fuzzyfinder",
"httpx",
"jieba",
"jinja2",
"nonebot-plugin-apscheduler",
"nonebot-plugin-htmlrender",
"nonebot-plugin-tortoise-orm",
"openai",
"pydantic",
"pyppeteer",
"requests",
"tencentcloud-sdk-python>=3.0.580",
"tortoise-orm",
]
setup(
name="nonebot-plugin-admin",
version="1.0.4.3",
author="yzyyz1387",
author_email="youzyyz1384@qq.com",
keywords=["pip", "nonebot2", "nonebot", "admin", "nonebot_plugin"],
description="nonebot2 plugin for group administration",
long_description=README_PATH.read_text(encoding="utf-8", errors="ignore"),
long_description_content_type="text/markdown",
url="https://github.com/yzyyz1387/nonebot_plugin_admin",
project_urls={
"Documentation": "https://github.com/yzyyz1387/nonebot_plugin_admin",
"Source": "https://github.com/yzyyz1387/nonebot_plugin_admin",
"Tracker": "https://github.com/yzyyz1387/nonebot_plugin_admin/issues",
},
packages=find_packages(include=["nonebot_plugin_admin", "nonebot_plugin_admin.*"]),
include_package_data=True,
platforms="any",
python_requires=">=3.9",
install_requires=INSTALL_REQUIRES,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
],
)