python-click/examples/completion/setup.py

14 lines
279 B
Python
Raw Normal View History

2018-09-06 20:55:10 +02:00
from setuptools import setup
setup(
2021-10-10 03:31:57 +02:00
name="click-example-completion",
2020-07-21 08:23:42 +02:00
version="1.0",
2021-10-10 03:31:57 +02:00
py_modules=["completion"],
2018-09-06 20:55:10 +02:00
include_package_data=True,
2020-07-21 08:23:42 +02:00
install_requires=["click"],
entry_points="""
2018-09-06 20:55:10 +02:00
[console_scripts]
2021-10-10 03:31:57 +02:00
completion=completion:cli
2020-07-21 08:23:42 +02:00
""",
2018-09-06 20:55:10 +02:00
)