-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (29 loc) · 1012 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
29
30
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="ymbotpy",
version='1.1.0.dev',
author="yiming",
author_email="[email protected]",
description="QQ robot webhook server using Python 3",
long_description=open("README.md", 'r',encoding="utf-8").read(),
long_description_content_type="text/markdown",
include_package_data=True,
url="https://github.com/HG-ha/ym-qq-botpy",
packages=find_packages(),
license="YiMing",
install_requires=["aiohttp>=3.7.4,<4",
"PyYAML",
"APScheduler",
"cryptography>=40.0.0",
"fastapi>=0.115.0",
"multidict",
"uvicorn"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
],
)