mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-07-27 08:11:38 +00:00
Improve structure
This commit is contained in:
25
setup.py
Normal file
25
setup.py
Normal file
@ -0,0 +1,25 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
with open('README.md', 'r', encoding='utf-8') as f:
|
||||
long_description = f.read()
|
||||
|
||||
setup(
|
||||
name='none-bot',
|
||||
version='0.0.1',
|
||||
packages=find_packages(include=('none', 'none.*')),
|
||||
url='https://github.com/richardchien/none-bot',
|
||||
license='AGPL-3.0',
|
||||
author='Richard Chien',
|
||||
author_email='richardchienthebest@gmail.com',
|
||||
description='A QQ bot framework',
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
install_requires=['aiocqhttp>=0.3'],
|
||||
python_requires='>=3.6',
|
||||
platforms='any',
|
||||
classifiers=(
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
),
|
||||
)
|
Reference in New Issue
Block a user