-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (89 loc) · 2.68 KB
/
pyproject.toml
File metadata and controls
99 lines (89 loc) · 2.68 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
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "Kurigram"
dynamic = ["version"]
description = "Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots"
readme = "README.md"
requires-python = ">=3.8"
authors = [{ name = "Dan", email = "dan@pyrogram.org" }]
maintainers = [{ name = "KurimuzonAkuma" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"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 :: Internet",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = ["pyaes<=1.6.1", "pysocks<=1.7.1"]
license = "LGPL-3.0-or-later"
license-files = ["COPYING", "COPYING.lesser"]
keywords = [
"telegram",
"chat",
"messenger",
"mtproto",
"api",
"client",
"library",
"python",
]
[project.urls]
Homepage = "https://kurigram.live"
Documentation = "https://docs.kurigram.live"
Source = "https://github.com/KurimuzonAkuma/pyrogram"
Issues = "https://github.com/KurimuzonAkuma/pyrogram/issues"
Community = "https://t.me/kurigram_chat"
[project.optional-dependencies]
dev = [
"keyring<=25.1.0",
"hatch<=1.7.0",
"pytest<=7.4.3",
"pytest-asyncio<=0.21.1",
"pytest-cov<=4.1.0",
"twine<=4.0.2",
]
docs = [
"Sphinx<=8.2.3",
"furo<=2024.8.8",
"sphinx-autobuild<=2024.10.3",
"sphinx-copybutton<=0.5.2",
"pygments<=2.19.1",
]
fast = [
"tgcrypto<=1.2.5",
"uvloop<=0.21.0; sys_platform == 'darwin' or sys_platform == 'linux'",
]
[tool.hatch.version]
path = "pyrogram/__init__.py"
[tool.hatch.build.hooks.custom]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
exclude = [
".github/",
"docs/",
"tests/",
".gitignore",
]
[tool.hatch.build.targets.wheel]
ignore-vcs = true
packages = ["pyrogram"]