This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
/
pyproject.toml
66 lines (54 loc) · 1.6 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "mys-goods-tool"
version = "2.1.0"
description = "米游社商品兑换工具|短信验证登录|终端TUI界面"
authors = ["Ljzd-PRO <ljzd@office.ljzd-pro.ml>"]
readme = "README.md"
homepage = "https://github.com/Ljzd-PRO/Mys_Goods_Tool"
repository = "https://github.com/Ljzd-PRO/Mys_Goods_Tool"
documentation = "https://github.com/Ljzd-PRO/Mys_Goods_Tool/wiki"
keywords = ["mihoyo", "mihoyobbs", "genshin impact", "textual", "tui"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable"
]
packages = [{ include = "mys_goods_tool" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Ljzd-PRO/Mys_Goods_Tool/issues"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
tenacity = "^8.2.2"
requests = "^2.31.0"
ping3 = "^4.0.4"
ntplib = "^0.4.0"
pydantic = "^1.10.9"
loguru = "^0.7.0"
httpx = "^0.24.1"
rich = "^13.4.2"
textual = "^0.27.0"
socksio = "^1.0.0"
apscheduler = "^3.10.1"
[tool.poetry.group.uvloop.dependencies]
uvloop = "^0.17.0"
[tool.poetry.group.pyinstaller.dependencies]
pyinstaller = "==5.12.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
pytest-html = "^3.2.0"
pytest-asyncio = "^0.21.0"
flake8 = "^6.0.0"
[tool.poetry.group.dev.dependencies]
pydevd-pycharm = "231.8109.197"
[tool.poetry.group.uvloop]
optional = true
[tool.poetry.group.pyinstaller]
optional = true
[tool.poetry.group.test]
optional = true
[tool.poetry.group.dev]
optional = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"