-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.08 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.08 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
AstrBot-plugin-tmp-bot
欧卡2TMP查询插件 - Python辅助脚本
"""
from setuptools import setup, find_packages
setup(
name="astrbot-plugin-tmp-bot",
version="1.0.0",
description="欧卡2TMP查询插件",
author="BGYdook",
author_email="",
url="https://github.com/BGYdook/astrbot-plugin-tmp-bot",
packages=find_packages(),
install_requires=[
"aiohttp>=3.8.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Communications :: Chat",
"Topic :: Games/Entertainment",
],
python_requires=">=3.10",
)