forked from Mayuri-Chan/pyrofork
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
92 lines (82 loc) · 2.69 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
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
[project]
name = "pyroblack"
dynamic = ["version"]
description = "Pyrogram, but black. Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots"
authors = [{ name = "eyMarv", email = "[email protected]" }]
dependencies = ["aiosqlite-black>=0.21.0", "pyaes==1.6.1", "pysocks==1.7.1", "pymediainfo-pyroblack>=6.1.1,<7.0.0"]
readme = "README.md"
license = "LGPL-3.0-or-later"
requires-python = "~=3.9"
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.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",
]
keywords = ["black bsxcs telegram chat messenger mtproto api client library python"]
[tool.hatch.version]
path = "pyrogram/__init__.py"
# Used to call hatch_build.py
[tool.hatch.build.hooks.custom]
[project.urls]
Tracker = "https://github.com/eyMarv/pyroblack/issues"
Community = "https://t.me/OpenFileZ"
Source = "https://github.com/eyMarv/pyroblack"
Documentation = "https://eyMarv.github.io/pyroblack-docs"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
dev = [
"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.0.2",
"sphinx-immaterial==0.11.11",
"sphinx_copybutton==0.5.2",
"sphinx-autobuild==2024.9.19",
"tornado==6.4.1"
]
speedup = [
"tgcrypto-pyroblack>=1.2.6",
"uvloop>=0.19.0"
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
exclude = [
".github/",
"docs/",
"tests/",
".editorconfig",
".gitignore",
".pre-commit-config.yaml",
"CODE_OF_CONDUCT.rst",
"CONTRIBUTING.rst",
"requirements.lock",
"requirements-dev.lock",
]
[tool.hatch.build.targets.wheel]
ignore-vcs = true
packages = ["pyrogram"]