-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1023 Bytes
/
setup.py
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
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mtpylon",
version="0.0.3",
author="Aleksandr Aibulatov",
author_email="[email protected]",
description="Library to build backend with MTProto protocol",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Zapix/mtpylon",
packages=setuptools.find_packages(),
package_data={
'mtpylon': ['py.typed']
},
classifiers=[
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3.9",
"Framework :: AsyncIO",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'aiohttp>=3.7.4',
'aiohttp-cors>=0.7.0',
'rsa>=4.7.2',
'TgCrypto>=1.2.2',
'pyaes>=1.6.1',
'mypy-extensions>=0.4.3',
],
python_requires='>=3.9',
)