This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
pass2bw/setup.py

19 lines
460 B
Python

from setuptools import find_packages, setup
setup(
name='pass2bw',
use_scm_version=True,
description='Import passwords from pass into Bitwarden using bw',
author='Dustin C. Hatch',
author_email='dustin@hatch.name',
license='Apache-2',
py_modules=['pass2bw'],
package_dir={'': 'src'},
setup_requires=['setuptools_scm'],
entry_points={
'console_scripts': [
'pass2bw=pass2bw:main',
],
},
)