archive
/
yubi-lock
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
yubi-lock/setup.py

15 lines
243 B
Python

from setuptools import setup
setup(
name='yubi-lock',
version='1.0',
install_requires=[
'click',
'python-yubico'
],
entry_points='''
[console_scripts]
yubi-lock=yubi_lock.cli:cli
''',
)