nonebot2/setup.py

26 lines
793 B
Python
Raw Normal View History

2018-06-26 02:25:11 +00:00
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',
2018-06-29 14:54:24 +00:00
license='MIT License',
2018-06-26 02:25:11 +00:00
author='Richard Chien',
author_email='richardchienthebest@gmail.com',
description='A QQ bot framework',
long_description=long_description,
long_description_content_type="text/markdown",
2018-07-01 03:01:24 +00:00
install_requires=['aiocqhttp>=0.3', 'aiocache'],
2018-06-26 02:25:11 +00:00
python_requires='>=3.6',
platforms='any',
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)