forked from progrium/localtunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 760 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from localtunnel import __version__
setup(
name='localtunnel',
version=__version__,
author='Jeff Lindsay',
author_email='[email protected]',
description='Magically expose a local port to the Internet',
license='MIT',
classifiers=[
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
url="http://github.com/progrium/localtunnel",
packages=find_packages(),
install_requires=['eventlet', 'requests', 'argparse', 'yunomi'],
data_files=[],
entry_points={
'console_scripts': [
'localtunnel-beta = localtunnel.client:run',
'localtunneld = localtunnel.server.cli:run',]},
)