tgcrypto/setup.py

83 lines
3.2 KiB
Python
Raw Normal View History

2020-04-30 12:12:36 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
2021-12-22 15:50:14 +00:00
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
2018-01-27 16:15:32 +00:00
#
2020-04-30 12:12:36 +00:00
# This file is part of Pyrogram.
2018-01-27 16:15:32 +00:00
#
2020-04-30 12:12:36 +00:00
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
2018-01-27 16:15:32 +00:00
#
2020-04-30 12:12:36 +00:00
# Pyrogram is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
2018-01-27 16:15:32 +00:00
#
2020-04-30 12:12:36 +00:00
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
2018-01-27 16:15:32 +00:00
2018-03-12 15:30:30 +00:00
from setuptools import setup, Extension, find_packages
with open("README.md", encoding="utf-8") as f:
readme = f.read()
2018-01-27 16:15:32 +00:00
setup(
name="TgCrypto",
2022-11-11 19:16:39 +00:00
version="1.2.5",
2021-10-11 16:18:46 +00:00
description="Fast and Portable Cryptography Extension Library for Pyrogram",
2018-03-12 15:30:30 +00:00
long_description=readme,
long_description_content_type="text/markdown",
2018-03-12 15:30:30 +00:00
url="https://github.com/pyrogram",
download_url="https://github.com/pyrogram/tgcrypto/releases/latest",
author="Dan",
author_email="dan@pyrogram.org",
2018-01-27 16:15:32 +00:00
license="LGPLv3+",
classifiers=[
"Development Status :: 5 - Production/Stable",
2018-01-27 16:15:32 +00:00
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: C",
2018-03-12 15:30:30 +00:00
"Programming Language :: Python",
"Programming Language :: Python :: 3",
2019-06-12 22:58:18 +00:00
"Programming Language :: Python :: 3.7",
2019-11-27 13:11:38 +00:00
"Programming Language :: Python :: 3.8",
2021-10-11 16:18:46 +00:00
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
2022-11-11 19:16:39 +00:00
"Programming Language :: Python :: 3.11",
2018-03-12 15:30:30 +00:00
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
2018-01-27 16:15:32 +00:00
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Internet",
2018-03-12 15:30:30 +00:00
"Topic :: Communications",
2018-01-27 16:15:32 +00:00
"Topic :: Communications :: Chat",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
],
2021-10-11 16:18:46 +00:00
keywords="pyrogram telegram crypto cryptography encryption mtproto extension library aes",
2018-03-12 15:30:30 +00:00
project_urls={
"Tracker": "https://github.com/pyrogram/tgcrypto/issues",
"Community": "https://t.me/pyrogram",
2018-03-12 15:30:30 +00:00
"Source": "https://github.com/pyrogram/tgcrypto",
"Documentation": "https://docs.pyrogram.org",
2018-03-12 15:30:30 +00:00
},
2022-10-11 08:57:44 +00:00
python_requires="~=3.7",
2018-01-27 16:15:32 +00:00
packages=find_packages(),
2019-06-13 14:40:23 +00:00
test_suite="tests",
2018-01-27 16:15:32 +00:00
zip_safe=False,
ext_modules=[
Extension(
"tgcrypto",
sources=[
"tgcrypto/tgcrypto.c",
"tgcrypto/aes256.c",
"tgcrypto/ige256.c",
2019-06-12 22:31:25 +00:00
"tgcrypto/ctr256.c",
"tgcrypto/cbc256.c"
2018-01-27 16:15:32 +00:00
]
)
]
)