This commit is contained in:
Alexander Bersenev
2018-06-23 01:07:49 +05:00
parent d56c995ee2
commit 7265208426
3 changed files with 50 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
__pycache__/
*.egg-info/
build/
dist/

3
setup.cfg Normal file
View File

@@ -0,0 +1,3 @@
[bdist_wheel]
universal = 0
python-tag = py35

43
setup.py Executable file
View File

@@ -0,0 +1,43 @@
#!/usr/bin/env python3
import setuptools
with open("README.md", "rt") as readme_fp:
long_description = readme_fp.read().strip()
setuptools.setup(
name="mtprotoproxy",
version="0.9",
description="Async MTProto Proxy",
long_description=long_description,
url="https://github.com/alexbers/mtprotoproxy",
author="Alexander Bersenev",
author_email="bay@hackerdom.ru",
maintainer="Alexander Bersenev",
maintainer_email="bay@hackerdom.ru",
license="MIT",
packages=[],
install_requires=[
"pycryptodome~=3.6,!=3.6.2"
],
extras_require={
"uvloop": [
"uvloop~=0.10.1"
],
"pyaes": [
"pyaes~=1.6.1"
]
},
scripts=[
"mtprotoproxy.py"
],
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5"
"Programming Language :: Python :: 3.6"
]
)