14 lines
221 B
Python
14 lines
221 B
Python
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name="lantern",
|
|
version="1.0",
|
|
install_requires=[
|
|
"sanic==0.4.1"
|
|
],
|
|
entry_points="""
|
|
[console_scripts]
|
|
lantern=lantern.main:main
|
|
"""
|
|
)
|