-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
74 lines (67 loc) · 3.02 KB
/
setup.py
File metadata and controls
74 lines (67 loc) · 3.02 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
import re
from sys import argv
from setuptools import setup, find_packages
from compiler.api import compiler as api_compiler
from compiler.errors import compiler as errors_compiler
with open("requirements.txt", encoding="utf-8") as r:
requires = [i.strip() for i in r]
with open("pyrogram/__init__.py", encoding="utf-8") as f:
version = re.findall(r"__version__ = \"(.+)\"", f.read())[0]
with open("README.md", encoding="utf-8") as f:
readme = f.read()
if len(argv) > 1 and argv[1] in ["bdist_wheel", "install", "develop"]:
api_compiler.start()
errors_compiler.start()
setup(
name="pyrogram", # Совместимость с оригинальным pyrogram
version=version,
description="Monkeygram - Custom Pyrogram fork with additional features",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/deadboizxc/pyrogram",
download_url="https://github.com/deadboizxc/pyrogram/releases/latest",
author="deadboizxc", # Измени на свое имя
author_email="deadboi.zxc@gmail.com", # Измени на свой email
license="LGPLv3",
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"
],
keywords="telegram chat messenger mtproto api client library python monkeygram",
project_urls={
"Tracker": "https://github.com/deadboizxc/pyrogram/issues",
"Community": "https://t.me/monkeygram_cht",
"Source": "https://github.com/deadboizxc/pyrogram",
"Documentation": "https://deadboizxc.org/monkeygram",
},
python_requires="~=3.8",
package_data={
"pyrogram": ["py.typed"],
},
packages=find_packages(exclude=["compiler*", "tests*"]),
zip_safe=False,
install_requires=requires,
# Добавлены следующие параметры для обеспечения совместимости
provides=["pyrogram"],
package_dir={"pyrogram": "pyrogram"},
)