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