-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (40 loc) · 1.46 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
from setuptools import find_namespace_packages
from setuptools import setup
setup(
name="skittles",
version="0.1.1",
description="mirai-api-http Mock 测试工具",
long_description=open("README.md", "rt", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/RockChinQ/Skittles",
project_urls={
"Bug Report": "https://github.com/RockChinQ/Skittles/issues"
},
author="RockChinQ",
author_email="[email protected]",
license="GNU Affero General Public License v3.0",
packages=find_namespace_packages(".", exclude="tests"),
package_dir={"": "."},
py_modules=["skittles"],
package_data={"": ["*.json"]},
install_requires=[
"websockets",
"pydantic",
"quart",
"aiocqhttp",
],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: Chinese (Simplified)",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)