-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (80 loc) · 2.53 KB
/
pyproject.toml
File metadata and controls
90 lines (80 loc) · 2.53 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1.27.0"]
[project]
name = "pyrogrammod"
description = "Modified version of the Pyrogram Telegram MTProto API framework in Python for users and bots."
readme = "README.md"
license = { text = "LGPL-3.0-or-GPL-3.0" }
requires-python = ">=3.9"
authors = [
{ name = "Dan (original author)" },
{ name = "PyrogramMod (Fork Maintainer)" }
]
dynamic = ["version"]
keywords = ["telegram", "chat", "messenger", "mtproto", "api", "client", "library", "python"]
dependencies = [
"aiofiles>=24.1.0",
"pyaes==1.6.1",
"pysocks==1.7.1",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.optional-dependencies]
docs = [
"furo>=2024.8.6",
"pygments>=2.19.1",
"sphinx>=8.0.0",
"sphinx-autobuild>=2024.10.3",
"sphinx-copybutton>=0.5.2"
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0"
]
py_tgcalls = [
"py-tgcalls>=2.2.5",
]
[project.urls]
Homepage = "https://pyrogrammod.readthedocs.io"
Tracker = "https://github.com/PyrogramMod/PyrogramMod/issues"
Community = "https://t.me/pyrogramodchat"
Source = "https://github.com/PyrogramMod/PyrogramMod"
Documentation = "https://pyrogrammod.readthedocs.io"
[tool.hatch.version]
path = "pyrogram/__init__.py"
[tool.hatch.build.hooks.custom]
module = "scripts.hatch_gen_api"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
exclude = [
".gitignore",
"docs/",
"tests/"
]
[tool.hatch.build.targets.wheel]
ignore-vcs = true
packages = ["pyrogram"]