mirror of
https://github.com/alexbers/mtprotoproxy.git
synced 2026-03-14 07:13:09 +00:00
add pypi
This commit is contained in:
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
__pycache__/
|
||||
*.egg-info/
|
||||
build/
|
||||
dist/
|
||||
43
setup.py
Executable file
43
setup.py
Executable 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"
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user