-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (33 loc) · 1.06 KB
/
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
import setuptools
from py_localtunnel.cli import __version__
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setuptools.setup(
name="py-localtunnel",
version=__version__,
author="Jak Bin",
author_email="[email protected]",
description="localtunnel alternative in python",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/jakbin/py-localtunnel",
install_requires=["urllib3"],
python_requires=">=3",
project_urls={
"Bug Tracker": "https://github.com/jakbin/py-localtunnel/issues",
},
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
],
keywords='localtunnel,port-forwarding,expose-locahost,localtunnel',
packages=["py_localtunnel"],
entry_points={
"console_scripts":[
"pylt = py_localtunnel.cli:main",
"lt = py_localtunnel.cli:main"
]
}
)