19 lines
460 B
Python
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',
|
|
],
|
|
},
|
|
)
|