-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.36 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Author: i2cy(i2cy@outlook.com)
# Project: NonebotPluginLockingLock
# Filename: setup
# Created on: 1/10/2022
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="nonebot-plugin-lockinglock", # Replace with your own username
version="0.1.3",
author="I2cy Cloud",
author_email="i2cy@outlook.com",
description="Locking Lock remote controller plugin based on Nonebot standard",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/i2cy/Nonebot-Plugin-LockingLock",
project_urls={
"Bug Tracker": "https://github.com/i2cy/Nonebot-Plugin-LockingLock/issues",
"Source Code": "https://github.com/i2cy/Nonebot-Plugin-LockingLock",
"Documentation": "https://github.com/i2cy/Nonebot-Plugin-LockingLock/master/README.md"
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'i2cylib>=1.12.1',
'i2llserver>=1.1.0',
'nonebot2',
'nonebot-adapter-mirai2'
],
packages=setuptools.find_packages(),
python_requires=">=3.7",
entry_points={'console_scripts':
[
]
}
)