-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 878 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 878 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
27
28
29
30
31
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="nonebot_plugin_reborn",
version="0.1",
description='Reborn Simulator for Nonebot 2',
long_description=long_description,
long_description_content_type="text/markdown",
author='Azite',
author_email='aziteee@outlook.com',
license='MIT License',
packages=["nonebot_plugin_reborn"],
install_requires=[
"nonebot2>=2.0.0b3",
"nonebot-adapter-onebot>=2.0.0b1",
"nonebot-plugin-htmlrender>=0.0.4",
],
platforms=["all"],
url='https://github.com/Aziteee/nonebot_plugin_reborn',
classifiers=[
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
)