forked from PyPtt/PyPtt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 1.72 KB
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
67
68
69
70
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PyPtt"
dynamic = ["version"]
description = "PyPtt github: https://github.com/PyPtt/PyPtt"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GNU Lesser General Public License v3 (LGPLv3)" }
keywords = ["PTT", "crawler", "bot", "library", "websockets"]
authors = [
{ name = "CodingMan", email = "pttcodingman@gmail.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Communications :: BBS",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Natural Language :: Chinese (Traditional)",
"Natural Language :: English",
]
dependencies = [
"progressbar2",
"websockets==12.0",
"uao",
"requests==2.32.4",
"AutoStrEnum",
"PyYAML",
]
[project.urls]
Homepage = "https://pyptt.cc/"
Repository = "https://github.com/PyPtt/PyPtt"
[project.optional-dependencies]
api = [
"fastapi",
"uvicorn[standard]",
]
dev = [
"pytest",
"python-dotenv",
"flake8",
"sphinx",
"sphinx-copybutton",
"pygments==2.15.0",
"Furo",
"sphinx-sitemap",
]
[tool.setuptools]
packages = ["PyPtt"]
[tool.setuptools.dynamic]
[tool.setuptools.package-data]
PyPtt = ["ssl/*.pem"]