Skip to content

Commit

Permalink
✨ 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yzyyz1387 committed Nov 9, 2022
1 parent 33b2e6a commit bc4fcd0
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
build/
dist/
nonebot_plugin_admin.egg-info/
setup.py
.idea/
.idea
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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-admin",
version="0.3.3",
author="yzyyz1387",
author_email="[email protected]",
keywords=("pip", "nonebot2", "nonebot", "admin", "nonebot_plugin"),
description="""nonebot2 plugin for group administration""",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yzyyz1387/nonebot_plugin_admin",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
],
include_package_data=True,
platforms="any",
install_requires=["fuzzyfinder", 'nonebot-adapter-onebot>=2.0.0-beta.1', 'nonebot2>=2.0.0-beta'
'.4', "jieba",
"httpx", "tencentcloud-sdk-python>=3.0.580", "jinja2", "pyppeteer", "imageio", "numpy"]
)

0 comments on commit bc4fcd0

Please sign in to comment.