-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
28 lines (25 loc) · 931 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
import io
import sys
import setuptools
with open("README.md", "r", encoding="utf-8", errors="ignore") as fh:
long_description = fh.read()
setuptools.setup(
name="nonebot_plugin_code",
version="0.0.8",
author="yzyyz1387",
author_email="[email protected]",
keywords=("pip", "nonebot2", "nonebot", "nonebot_plugin"),
description="""nonebot2 plugin run code online""",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yzyyz1387/nonebot_plugin_code",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
platforms="any",
install_requires=['nonebot-adapter-onebot>=2.0.0-beta.1,<3.0.0', 'nonebot2>=2.0.0-beta.1,<3.0.0', 'httpx>=0.19.0', ]
)