-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 980 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 980 Bytes
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
import setuptools
with open("README.md", "r", encoding="utf-8", errors="ignore") as f:
long_description = f.read()
setuptools.setup(
name='nonebot-plugin-random',
version='0.0.9',
author='jcjrobert',
author_email='jcjrobbie@gmail.com',
keywords=["pip", "nonebot2", "nonebot", "random", "抽图"],
url='https://github.com/jcjrobert/nonebot-plugin-random',
description='Nonebot2 通用抽图/语音插件',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
license='MIT License',
packages=setuptools.find_packages(),
include_package_data=True,
platforms="any",
install_requires=[
'nonebot2>=2.0.0-beta.4', 'nonebot-adapter-onebot>=2.0.0-beta.4', 'httpx>=0.19.0',
]
)