-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 758 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
from flask_lt import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="flask-localtunnel",
version=__version__,
author="Jak Bin",
description="A simple way to demo Flask apps from your machine.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jakbin/flask-localtunnel",
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
keywords='flask,flask-ngrok,ngrok,localtunnel,demo',
py_modules=['flask_lt'],
install_requires=['Flask>=0.14.0','py-localtunnel'],
)