forked from why2lyj/ItChat-UOS
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
33 lines (31 loc) · 872 Bytes
/
pyproject.toml
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
[project]
name = "VChat"
dynamic = ["version"]
authors = [
{ name="z2z63", email="vituralfuture@gmail.com" },
]
description = "A wechat personal account interface"
readme = "README.md"
license = {text = "MIT License"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyqrcode~=1.2.1",
"aiohttp~=3.9.1",
"yarl~=1.9.4",
"lxml~=5.2.2",
"typing-extensions;python_version<'3.12'",
]
keywords = ["wechat", "wexin", "itchat", "itchat-uos"]
[project.urls]
Homepage = "https://github.com/z2z63/VChat"
Issues = "https://github.com/z2z63/VChat/issues"
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "vchat/_version.py"