setup.py (831B)
1 from setuptools import setup 2 3 setup( 4 name='tfa-cli-tools', 5 version='0.0.2', 6 description='CLI commands for common TFA-related operations', 7 author='Louis Holbrook', 8 author_email='dev@holbrook.no', 9 install_requires=[ 10 'pyotp==2.3.0', 11 ], 12 scripts=[ 13 'scripts/otp', 14 ], 15 url='https://gitlab.com/nolash/tfa-cli-tools', 16 classifiers=[ 17 'Programming Language :: Python :: 3', 18 'Operating System :: OS Independent', 19 'Development Status :: 3 - Alpha', 20 'Environment :: Console', 21 'Intended Audience :: End Users/Desktop', 22 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 23 'Topic :: Utilities', 24 ], 25 )