forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D7869 --HG-- extra : moz-landing-system : lando
15 lines
274 B
Python
15 lines
274 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='click-example-inout',
|
|
version='0.1',
|
|
py_modules=['inout'],
|
|
include_package_data=True,
|
|
install_requires=[
|
|
'click',
|
|
],
|
|
entry_points='''
|
|
[console_scripts]
|
|
inout=inout:cli
|
|
''',
|
|
)
|