-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
50 lines (44 loc) · 1.25 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
[project]
name = "tg-searcher"
dynamic = [ "version" ]
description = "Telegram searcher bot for Chinese"
readme = "README.md"
authors = [
{name = "SharzyL", email = "[email protected]"},
]
dependencies = [
"Telethon<2.0.0,>=1.32.0",
"python-socks<3.0.0,>=2.4.4",
"cryptg<1.0.0,>=0.4.0",
"async-timeout<5.0.0,>=4.0.3",
"jieba>=0.42.1",
"pyyaml>=6.0.1",
"redis>=5.0.3",
"whoosh>=2.7.4",
]
requires-python = "<4.0,>=3.9"
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Topic :: Communications :: Chat",
"Topic :: Utilities"
]
[project.urls]
changelog = "https://github.com/SharzyL/tg_searcher/blob/master/CHANGELOG.md"
homepage = "https://github.com/SharzyL/tg_searcher"
repository = "https://github.com/SharzyL/tg_searcher.git"
[project.scripts]
tg-searcher = "tg_searcher:main"
[tool.pdm.scripts]
start = { call = "tg_searcher:main" }
[tool.pdm.version]
source = "file"
path = "tg_searcher/__init__.py"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"