-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
39 lines (33 loc) · 1010 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
31
32
33
34
35
36
37
38
39
import os
from setuptools import find_packages, setup
init_path = os.path.join(os.path.dirname(__file__), "ncatbot/__init__.py")
with open(init_path, "r") as f:
exec(f.read())
version = __version__
setup(
name="ncatbot",
version=version,
author="木子",
author_email="yihaoli_2002@foxmail.com",
description="NapCat Python SDK, 提供一站式开发部署方案",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/liyihao1110/ncatbot",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.10",
install_requires=[
"websockets~=10.4",
"httpx~=0.28.1",
"psutil~=6.1.1",
"tqdm~=4.67.1",
"requests~=2.32.3",
"Markdown~=3.7",
"Pygments~=2.19.1",
"pyppeteer~=2.0.0",
"pyyaml~=6.0.2",
],
)