22 lines
476 B
Python
22 lines
476 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='bwpass',
|
|
use_scm_version=True,
|
|
description='Pass-like interface for bw (the Bitwarden CLI)',
|
|
author='Dustin C. Hatch',
|
|
author_email='dustin@hatch.name',
|
|
url='',
|
|
license='GPL-3',
|
|
package_dir={'': 'src'},
|
|
py_modules=['bwpass'],
|
|
setup_requires=[
|
|
'setuptools_scm',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'bwpass=bwpass:main',
|
|
],
|
|
},
|
|
)
|